prerm is in mailman 1:2.1.16-2ubuntu0.5.
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 24 25 26 27 28 29 30 31 32 33 34 35 36 | #! /bin/sh -e
#
# prerm script for Debian python packages.
# Written 1998 by Gregor Hoffleit <flight@debian.org>.
#
# $URL: svn+ssh://tg@svn.debian.org/svn/pkg-mailman/branches/experimental/debian/prerm $
# $Id: prerm 421 2006-10-08 12:50:00Z giskard-guest $
if [ "$1" = "failed-upgrade" ] ; then
if [ -x "/etc/init.d/mailman" ]; then
if [ -x /usr/sbin/invoke-rc.d ] ; then
invoke-rc.d mailman stop || true
else
/etc/init.d/mailman stop || true
fi
fi
chmod -x /usr/lib/mailman/bin/mailmanctl
fi
# Automatically added by dh_installinit
if [ -x "/etc/init.d/mailman" ] || [ -e "/etc/init/mailman.conf" ]; then
invoke-rc.d mailman stop || exit $?
fi
# End automatically added section
# Automatically added by dh_python2:
if which pyclean >/dev/null 2>&1; then
pyclean -p mailman
else
dpkg -L mailman | grep \.py$ | while read file
do
rm -f "${file}"[co] >/dev/null
done
fi
# End automatically added section
|