postrm is in libdspam7-drv-mysql 3.10.1+dfsg-4ubuntu1.
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 37 38 39 40 41 42 43 44 45 46 47 48 49 | #!/bin/sh
set -e
# Load debconf
. /usr/share/debconf/confmodule
# Load dbconfig
if [ -f /usr/share/dbconfig-common/dpkg/postrm.mysql ]; then
. /usr/share/dbconfig-common/dpkg/postrm.mysql
dbc_go libdspam7-drv-mysql $@
fi
case "$1" in
purge)
dpkg-statoverride --quiet --remove /etc/dspam/dspam.d/mysql.conf || true
# Remove files registered with ucf (through dbconfig-common).
for ext in '~' '%' .bak .dpkg-tmp .dpkg-new .dpkg-old .dpkg-dist .ucf-old .ucf-dist; do
rm -f /etc/dspam/dspam.d/mysql.conf$ext
done
rm -f /etc/dspam/dspam.d/mysql.conf
if [ -x /usr/bin/ucf ]; then
ucf --purge /etc/dspam/dspam.d/mysql.conf
fi
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
# Automatically added by dh_installdeb
dpkg-maintscript-helper rm_conffile /etc/cron.daily/libdspam7-drv-mysql 3.9.1~rc1+git20110419.29261fb+dfsg-2 -- "$@"
# End automatically added section
# Automatically added by dh_installdebconf
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
# End automatically added section
exit 0
|