view postrm @ 54:733f8e64de02

removed rmail.1 because upstream includes it now it is rmail.8 now
author meillo@marmaro.de
date Sun, 18 Jul 2010 10:53:32 +0200
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#