X-Git-Url: http://git.home-dn.net/?p=manu%2Fsuphp.git;a=blobdiff_plain;f=debian%2Flibapache2-mod-suphp.prerm;fp=debian%2Flibapache2-mod-suphp.prerm;h=c4b0f51c6836b277287f47e1c9f718b42aa4b2dc;hp=0000000000000000000000000000000000000000;hb=728a5b3f000f892e52ecea98fcc8f0c5d7275b7b;hpb=5885dc0e57f7d573f46426969a522f68b7cacfda diff --git a/debian/libapache2-mod-suphp.prerm b/debian/libapache2-mod-suphp.prerm new file mode 100644 index 0000000..c4b0f51 --- /dev/null +++ b/debian/libapache2-mod-suphp.prerm @@ -0,0 +1,51 @@ +#! /bin/sh +# prerm script for libapache-mod-suphp +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `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 + remove) + if [ -e /etc/apache2/mods-enabled/suphp.load ]; then + a2dismod suphp >/dev/null || true + reload_apache + fi + ;; + upgrade|failed-upgrade|deconfigure) + ;; + *) + echo "prerm 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 + +