postrm is in slbackup 0.0.12-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 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 | #!/bin/sh
set -e
# slbackup postrm
# Modified by Morten Werner Olsen <werner@skolelinux.no>
case "$1" in
purge)
if [ -d /etc/slbackup ] ; then
rm -Rf /etc/slbackup
fi
if [ -d /var/log/slbackup ] ; then
rm -Rf /var/log/slbackup
fi
if [ -e /etc/cron.d/slbackup ] ; then
rm -f /etc/cron.d/slbackup
fi
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 0
;;
esac
dpkg-maintscript-helper rm_conffile /etc/cron.daily/slbackup 0.0.12-3 -- "$@"
# 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
|