debian/masqmail-debian

view postrm @ 12:dbe1baf4935b

updated french translation by Ivan Buresi also thanks to Christian Perrier (Closes Debian bug #504615)
author meillo@marmaro.de
date Thu, 06 Nov 2008 10:20:04 +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#