[svn-buildpackage] Tagging suphp (0.6.2-1)
[manu/suphp.git] / debian / libapache-mod-suphp.prerm
1 #! /bin/sh
2 # prerm script for libapache-mod-suphp
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 # summary of how this script can be called:
9 #        * <prerm> `remove'
10 #        * <old-prerm> `upgrade' <new-version>
11 #        * <new-prerm> `failed-upgrade' <old-version>
12 #        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
13 #        * <deconfigured's-prerm> `deconfigure' `in-favour'
14 #          <package-being-installed> <version> `removing'
15 #          <conflicting-package> <version>
16 # for details, see http://www.debian.org/doc/debian-policy/ or
17 # the debian-policy package
18
19
20 case "$1" in
21     remove)
22         if [ -x /usr/sbin/apache-modconf ]; then
23             for i in apache apache-perl apache-ssl; do
24                 if [ -e /etc/$i/httpd.conf ]; then
25                     apache-modconf $i disable mod_suphp quiet
26                 fi
27             done
28         fi
29
30         ;;
31     upgrade|failed-upgrade|deconfigure)
32         ;;
33     *)
34         echo "prerm called with unknown argument \`$1'" >&2
35         exit 1
36     ;;
37 esac
38
39 # dh_installdeb will replace this with shell code automatically
40 # generated by other debhelper scripts.
41
42 #DEBHELPER#
43
44 exit 0
45
46