AlternC/debian/postrm

74 lines
2.0 KiB
Plaintext
Raw Normal View History

#! /bin/sh
set -e
. /usr/share/debconf/confmodule
# * postrm remove
# * postrm purge
# * old-postrm upgrade new-version
# * new-postrm failed-upgrade old-version
# * new-postrm abort-install
# * new-postrm abort-install old-version
# * new-postrm abort-upgrade old-version
# * disappearer's-postrm disappear overwriter overwriter-version
case "$1" in
purge)
rm -f /etc/alternc/local.sh /etc/alternc/bureau.conf
rm -f /var/backups/alternc/etc-installed.tar.gz
# Purge database?
db_input high alternc/postrm_remove_databases || true
db_go
db_get alternc/postrm_remove_databases || true
if [ "$RET" = "true" ]; then
rm -rf /var/alternc/db
fi
# Purge datafiles?
db_input high alternc/postrm_remove_datafiles || true
db_go
db_get alternc/postrm_remove_datafiles || true
if [ "$RET" = "true" ]; then
rm -rf /var/backups/alternc /var/alternc/dns /var/alternc/html /var/alternc/redir
fi
# Purge bind zones
db_input high alternc/postrm_remove_bind || true
db_go
db_get alternc/postrm_remove_bind || true
if [ "$RET" = "true" ]; then
rm -rf /var/alternc/bind /etc/bind/templates
fi
# Purge mailboxes
db_input high alternc/postrm_remove_mailboxes || true
db_go
db_get alternc/postrm_remove_mailboxes || true
if [ "$RET" = "true" ]; then
rm -rf /var/alternc/mail
fi
rm -rf /var/alternc/apacheconf /var/alternc/cgi-bin /var/alternc/bureau /var/alternc/exec.usr /var/alternc/mla /var/alternc/redir /var/alternc/tmp /var/log/alternc
2007-05-31 17:07:16 +00:00
rm -f /etc/apache/conf.d/override.php.conf /etc/apache/conf.d/alternc-ssl.conf /etc/apache/conf.d/alternc.conf
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade)
;;
disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
# vim: et sw=4