no change in the translation, but only in the source data
author |
meillo@marmaro.de |
date |
Wed, 11 Mar 2009 10:05:48 +0100 |
parents |
5ef519035828 |
children |
30402b14eeb8 |
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
|
|
9 # Remove from inetd.conf
|
|
10 ##update-inetd --remove masqmail
|
|
11 ;;
|
|
12
|
|
13 upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
|
14 ;;
|
|
15 esac
|
|
16
|
|
17 #DEBHELPER#
|