postrm is in linkchecker-web 9.3-5.
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 | #!/bin/sh
# postrm script for linkchecker-web
#
# see: dh_installdeb(1)
set -e
if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
CONF="linkchecker"
if [ -e /usr/share/apache2/apache2-maintscript-helper ]; then
# apache 2.4
. /usr/share/apache2/apache2-maintscript-helper
apache2_invoke disconf $CONF
elif dpkg-query -f '${Version}' -W 'apache2.2-common' > /dev/null 2>&1; then
# apache 2.2
[ -L /etc/apache2/conf.d/$CONF.conf ] && rm /etc/apache2/conf.d/$CONF.conf
fi
fi
exit 0
|