39 lines
958 B
Bash
39 lines
958 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
purge|remove)
|
|
|
|
# Apache2
|
|
if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
|
|
echo "disabling Apache2 configuration ..."
|
|
. /usr/share/apache2/apache2-maintscript-helper
|
|
apache2_invoke disconf bp-addon ||true
|
|
fi
|
|
if [ -L /etc/apache2/conf.d/bp-addon.conf ]; then
|
|
echo "removing link /etc/apache2/conf.d/bp-addon.conf ..."
|
|
# remove link to config
|
|
rm -f /etc/apache2/conf.d/bp-addon.conf
|
|
# reload webserver
|
|
[ -x $(which invoke-rc.d) ] && invoke-rc.d apache2 reload || true
|
|
fi
|
|
|
|
;;
|
|
|
|
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
|