prerm is in auth2db 0.2.5-2+dfsg-4.
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 9 10 11 12 | #!/bin/sh
set -e
. /usr/share/debconf/confmodule
. /usr/share/dbconfig-common/dpkg/prerm.mysql
dbc_go auth2db $@
# Automatically added by dh_installinit
if [ -x "/etc/init.d/auth2db" ]; then
invoke-rc.d auth2db stop || exit $?
fi
# End automatically added section
|