masqmail-0.2

diff debian/postrm @ 0:08114f7dcc23

this is masqmail-0.2.21 from oliver kurth
author meillo@marmaro.de
date Fri, 26 Sep 2008 17:05:23 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/debian/postrm	Fri Sep 26 17:05:23 2008 +0200
     1.3 @@ -0,0 +1,17 @@
     1.4 +#!/bin/sh -e
     1.5 +
     1.6 +case "$1" in
     1.7 +	purge)
     1.8 +		# On a purge we also...
     1.9 +		# Remove spool and config file
    1.10 +		rm -rf /var/log/masqmail /var/spool/masqmail /etc/masqmail
    1.11 +		rm -f /etc/default/masqmail
    1.12 +		# Remove from inetd.conf
    1.13 +		##update-inetd --remove masqmail
    1.14 +		;;
    1.15 +
    1.16 +	upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
    1.17 +		;;
    1.18 +esac
    1.19 +
    1.20 +#DEBHELPER#