postinst is in linkchecker-web 9.3-4.
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 | #!/bin/sh
# postinst script for linkchecker-web
#
# see: dh_installdeb(1)
set -e
case "$1" in
configure|reconfigure|abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
if [ "$1" = "configure" ]; then
CONF=linkchecker
if [ -e /usr/share/apache2/apache2-maintscript-helper ]; then
# apache 2.4
. /usr/share/apache2/apache2-maintscript-helper
apache2_invoke enconf $CONF
elif dpkg-query -f '${Version}' -W 'apache2.2-common' >/dev/null 2>&1; then
# apache 2.2
# the web interface uses content negotiation
a2enmod -q negotiation
[ -d /etc/apache2/conf.d/ ] && [ ! -L /etc/apache2/conf.d/$CONF.conf ] && ln -s ../conf-available/$CONF.conf /etc/apache2/conf.d/$CONF.conf
fi
# reload apache configuration
if [ -x /etc/init.d/apache2 ]; then
invoke-rc.d apache2 reload || true
fi
fi
exit 0
|