view postrm @ 59:a4a8f0d0b63a

updated TODO list to include the `set -e' stuff
author meillo@marmaro.de
date Mon, 19 Jul 2010 12:28:35 +0200 (2010-07-19)
parents 845b243eb46f
children
line wrap: on
line source
#!/bin/sh
set -e

case "$1" in
	purge)
		# On a purge we also...
		# Remove spool and config file
		rm -rf /var/log/masqmail /var/spool/masqmail /etc/masqmail
		rm -f /etc/default/masqmail
		rm -rf /var/run/masqmail
		# Remove from inetd.conf
		##update-inetd --remove masqmail
		;;

	upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
		;;
esac

#DEBHELPER#