#! /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 case "$1" in remove) if [ -x /usr/sbin/apache-modconf ]; then for i in apache apache-perl apache-ssl; do if [ -e /etc/$i/httpd.conf ]; then apache-modconf $i disable mod_suphp quiet fi done 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