live-build/debian/live-helper.postrm

23 lines
249 B
Plaintext
Raw Normal View History

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