debian/masqmail-debian

view postrm @ 22:d77a7b699b6d

updated debconf translations
author meillo@marmaro.de
date Sat, 23 May 2009 18:06:45 +0200
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#