debian/masqmail-debian

view postrm @ 23:30402b14eeb8

fixed lintian warnings
author meillo@marmaro.de
date Sun, 24 May 2009 20:21:51 +0200
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#