debian/masqmail-debian

view postrm @ 7:a5b9d7e998cf

Added tag 0.2.21-5 for changeset 11752c18c57d
author meillo@marmaro.de
date Wed, 05 Nov 2008 11:42:52 +0100
parents
children 30402b14eeb8
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#