postrm is in jsmath 3.6c-1.1.
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | #! /bin/sh
#
# jsmath postrm script, based on gallery's postrm
#
set -e
if [ -f /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
fi
if [ "$1" = "purge" ]; then
db_get jsmath/reconfigure || true
for websvrs in apache apache-perl apache-ssl apache2; do
rm -f /etc/$websvrs/conf.d/jsmath
done
webservers="$RET"
restart=""
for webserver in $webservers; do
webserver=${webserver%,}
case "$webserver" in
apache|apache-perl|apache-ssl|apache2)
rm -f /etc/$webserver/conf.d/jsmath
test -x /usr/sbin/$webserver || continue
db_reset jsmath/restart
db_subst jsmath/restart webserver "$webserver"
db_input high jsmath/restart || true
db_go
db_get jsmath/restart-webserver
if [ "$RET" = "true" ]; then
restart="$restart $webserver"
fi
;;
esac
done
rmdir --ignore-fail-on-non-empty /etc/jsmath || true
fi
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
if [ "$1" = "purge" ]; then
for webserver in $restart; do
webserver=${webserver%,}
if [ -x /usr/sbin/invoke-rc.d ]; then
invoke-rc.d $webserver restart
else
/etc/init.d/$webserver restart
fi
done
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
|