prerm is in mon 1.2.0-8.
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 18 | #!/bin/sh
#
# Author: Dario Minnucci <midget@debian.org>
# Date: Fri, 29 Jun 2007 00:43:09 +0200
# ### Username availability is checked on install step.
#
set -e
##echo "----------------------------------------------"
##echo " debian/prerm: $1"
##echo "----------------------------------------------"
# Automatically added by dh_installinit
if [ -x "/etc/init.d/mon" ] || [ -e "/etc/init/mon.conf" ]; then
invoke-rc.d mon stop || exit $?
fi
# End automatically added section
|