Imported Debian patch 0.9.6-1~netways70+1~preview+1+0~20160520113129.3+wheezy~1.gbp4d7db0

This commit is contained in:
jenkins-debian-glue Autobuilder
2016-05-20 13:31:33 +02:00
committed by Mario Fetka
parent cf99ff9476
commit d94d5bd812
17 changed files with 388 additions and 0 deletions

38
debian/postrm vendored Normal file
View File

@@ -0,0 +1,38 @@
#!/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