masqmail-0.2

view 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 source
1 #!/bin/sh -e
3 case "$1" in
4 purge)
5 # On a purge we also...
6 # Remove spool and config file
7 rm -rf /var/log/masqmail /var/spool/masqmail /etc/masqmail
8 rm -f /etc/default/masqmail
9 # Remove from inetd.conf
10 ##update-inetd --remove masqmail
11 ;;
13 upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
14 ;;
15 esac
17 #DEBHELPER#