debian/masqmail-debian
view postrm @ 14:92e4f8524471
updated translation: pt
by Miguel Figueiredo
(Closes Debian bug #504794
author | meillo@marmaro.de |
---|---|
date | Sun, 09 Nov 2008 19:53:29 +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#