1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/bin/sh
set -e
if [ "$BANDWIDTHD_PACKAGE_DEBUG" != "" ]; then
echo "bandwidthd.prerm: $*"
fi
# From http://wiki.debian.org/Apache/PackagingFor24 :
# "Likewise, in postrm do upon purge and simple removals"
if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
. /usr/share/apache2/apache2-maintscript-helper
apache2_invoke disconf bandwidthd.conf
fi
# reload apache2 config for uninstalled /bandwidthd alias.
if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
. /usr/share/apache2/apache2-maintscript-helper
apache2_reload
fi
#DEBHELPER#
|