debian/masqmail-debian

view postrm @ 51:845b243eb46f

removed -e from shebang and put it in separate line this removes the pedantic lintian info ``maintainer-script-without-set-e''. Refer to Debian Policy Manual section 10.4 (Scripts) for details.
author meillo@marmaro.de
date Fri, 25 Jun 2010 11:49:28 +0200
parents 30402b14eeb8
children
line source
1 #!/bin/sh
2 set -e
4 case "$1" in
5 purge)
6 # On a purge we also...
7 # Remove spool and config file
8 rm -rf /var/log/masqmail /var/spool/masqmail /etc/masqmail
9 rm -f /etc/default/masqmail
10 rm -rf /var/run/masqmail
11 # Remove from inetd.conf
12 ##update-inetd --remove masqmail
13 ;;
15 upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
16 ;;
17 esac
19 #DEBHELPER#