prerm is in amavisd-new 1:2.11.0-1ubuntu1.
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 19 20 21 22 23 | #!/bin/sh
set -e
init_failed ()
{
echo "WARNING: Stopping amavisd-new failed! Upgrade or removal may be incomplete!"
}
# Automatically added by dh_installinit/10.10.8ubuntu1
if [ -x "/etc/init.d/amavis-mc" ]; then
invoke-rc.d amavis-mc stop || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit/10.10.8ubuntu1
if [ -x "/etc/init.d/amavisd-snmp-subagent" ]; then
invoke-rc.d amavisd-snmp-subagent stop || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit/10.10.8ubuntu1
if [ -x "/etc/init.d/amavis" ]; then
invoke-rc.d amavis stop || exit $?
fi
# End automatically added section
|