postrm is in ganglia-webfrontend 3.6.1-1ubuntu1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | #! /bin/sh
set -e
. /usr/share/debconf/confmodule
db_version 2.0 || [ $? -lt 30 ]
if [ "$1" = "purge" ]; then
db_get ganglia-webfrontend/webserver || true
if [ "$RET" = "true" ]; then
webserver="apache2"
a2disconf ganglia-webfrontend || true
HTTPD_ETC=/etc/$webserver
HTTPD_CONF=$HTTPD_ETC/conf-available
HTTPD_CONF_GANGLIA=$HTTPD_CONF/ganglia-webfrontend.conf
if [ -h $HTTPD_CONF_GANGLIA ]; then
rm -f $HTTPD_CONF_GANGLIA
fi
if [ -x /usr/sbin/$webserver ]; then
db_reset ganglia-webfrontend/restart
db_input high ganglia-webfrontend/restart || true
db_go
# Restart apache2 if requested
db_get ganglia-webfrontend/restart
if [ "$RET" = "true" ]; then
if [ -x /usr/sbin/invoke-rc.d ]; then
invoke-rc.d $webserver restart
else
/etc/init.d/$webserver restart
fi
fi
fi
fi
rmdir --ignore-fail-on-non-empty /etc/ganglia-webfrontend || true
db_purge
fi
# Automatically added by dh_installdebconf
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
# End automatically added section
|