debian/masqmail-debian
view postrm @ 34:56c0c6807b0e
as I said, the newest standards version is 3.8.4
author | meillo@marmaro.de |
---|---|
date | Mon, 08 Feb 2010 16:41:27 +0100 |
parents | 5ef519035828 |
children | 845b243eb46f |
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 rm -rf /var/run/masqmail
10 # Remove from inetd.conf
11 ##update-inetd --remove masqmail
12 ;;
14 upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
15 ;;
16 esac
18 #DEBHELPER#