9 lines
165 B
Plaintext
9 lines
165 B
Plaintext
post_install() {
|
|
echo -n "module test... "
|
|
perl -mConvert::BinHex -e "exit 0;" 2> /dev/null && echo 'pass.' || echo 'fail.'
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|