prerm is in onak 0.4.6-1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | #! /bin/sh
set -e
# If keyd was enabled then make sure to stop it.
if grep -q -E '^use_keyd *(true|yes|1)$' /etc/onak.conf; then
invoke-rc.d onak stop || exit $?
fi
|