Mercurial > debian > masqmail-debian
view postrm @ 52:4dababf86cfb
clarified that masqmail is licensed under GPLv2 or any later
Because /usr/share/common-licenses/GPL points to GPL-3 now
author | meillo@marmaro.de |
---|---|
date | Fri, 25 Jun 2010 11:53:09 +0200 |
parents | 845b243eb46f |
children |
line wrap: on
line source
#!/bin/sh set -e case "$1" in purge) # On a purge we also... # Remove spool and config file rm -rf /var/log/masqmail /var/spool/masqmail /etc/masqmail rm -f /etc/default/masqmail rm -rf /var/run/masqmail # Remove from inetd.conf ##update-inetd --remove masqmail ;; upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; esac #DEBHELPER#