postrm is in sbackup 0.11.6-0ubuntu1.
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 | #!/bin/sh
set -e
sysconf_dir=/etc
dbus_system_conf_dir=$sysconf_dir/dbus-1/system.d
dbus_system_conf_file=org.sbackupteam.SimpleBackup.conf
case "$1" in
remove)
rm -f /etc/cron.d/sbackup
rm -f /etc/cron.hourly/sbackup
rm -f /etc/cron.daily/sbackup
rm -f /etc/cron.weekly/sbackup
rm -f /etc/cron.monthly/sbackup
rm -rf /var/log/sbackup
rm -f /var/log/sbackup-*.log
rm -f /var/log/sbackup-*.log.*.gz
;;
purge)
rm -f /etc/sbackup.conf
rm -rf /etc/sbackup.d
rm -f $dbus_system_conf_dir/$dbus_system_conf_file
;;
upgrade)
;;
failed-upgrade)
;;
abort-install|abort-upgrade)
;;
disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
exit 0
|