Mercurial > debian > masqmail-debian
annotate postrm @ 48:0c74bff072c5
added a doc-base entry
author | meillo@marmaro.de |
---|---|
date | Thu, 24 Jun 2010 13:02:49 +0200 |
parents | 30402b14eeb8 |
children | 845b243eb46f |
rev | line source |
---|---|
0 | 1 #!/bin/sh -e |
2 | |
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 | |
23 | 9 rm -rf /var/run/masqmail |
0 | 10 # Remove from inetd.conf |
11 ##update-inetd --remove masqmail | |
12 ;; | |
13 | |
14 upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) | |
15 ;; | |
16 esac | |
17 | |
18 #DEBHELPER# |