17 lines
231 B
Bash
17 lines
231 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
test_afalg_engine() {
|
||
|
opkg install openssl-util
|
||
|
openssl engine -t -c -v -pre DUMP_INFO afalg
|
||
|
}
|
||
|
|
||
|
case "$1" in
|
||
|
libopenssl-afalg_sync)
|
||
|
test_afalg_engine
|
||
|
;;
|
||
|
*)
|
||
|
echo "Unexpected package '$1'" >&2
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|