X-Git-Url: http://git.home-dn.net/?p=manu%2Fmod-proxy-html.git;a=blobdiff_plain;f=debian%2Fpostinst;fp=debian%2Fpostinst;h=ccc14b4d8982f0039c171aa8efb188a47c0cc979;hp=0000000000000000000000000000000000000000;hb=e23d1bdf874c2af6d7ab54fa834da653cc75c6cc;hpb=748cf57ecbfa96be512de7454769e36f172ec40b diff --git a/debian/postinst b/debian/postinst new file mode 100644 index 0000000..ccc14b4 --- /dev/null +++ b/debian/postinst @@ -0,0 +1,63 @@ +#! /bin/sh +# postinst script for libapache2-mod-proxy-html +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# + +reload_apache() +{ + if apache2ctl configtest 2>/dev/null; then + invoke-rc.d apache2 force-reload || true + else + echo "Your apache2 configuration is broken, so we're not restarting it for you." + fi +} + + +case "$1" in + configure) + # Reload the module on upgrade if enabled + if [ -n "$2" ]; then + if [ -e /etc/apache2/mods-enabled/proxy_html.load ]; then + reload_apache + fi + else + # Enable the module + if [ -e /etc/apache2/apache2.conf ]; then + a2enmod proxy_html >/dev/null || true + reload_apache + fi + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + +