live-build/debian/postrm

23 lines
245 B
Plaintext
Raw Normal View History

2007-09-23 08:05:10 +00:00
#!/bin/sh
set -e
case "$1" in
purge)
rm -f /var/log/live*
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0