prerm is in flashproxy-facilitator 1.7-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 13 14 15 16 17 | #!/bin/sh
set -e
# Automatically added by dh_installinit
if [ -x "/etc/init.d/fp-registrar-email" ] || [ -e "/etc/init/fp-registrar-email.conf" ]; then
invoke-rc.d fp-registrar-email stop || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
if [ -x "/etc/init.d/fp-reg-decryptd" ] || [ -e "/etc/init/fp-reg-decryptd.conf" ]; then
invoke-rc.d fp-reg-decryptd stop || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
if [ -x "/etc/init.d/fp-facilitator" ] || [ -e "/etc/init/fp-facilitator.conf" ]; then
invoke-rc.d fp-facilitator stop || exit $?
fi
# End automatically added section
|