~ubuntu-branches/debian/jessie/suphp/jessie

« back to all changes in this revision

Viewing changes to debian/libapache-mod-suphp.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Emmanuel Lacour
  • Date: 2008-06-04 10:04:08 UTC
  • mfrom: (8.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080604100408-2cds9ym5c698i24e
Tags: 0.6.2-3
* debian/conf/suphp.conf: by default, deactivate suPHP for applications in
  /usr/share (owned by uid 0) (closes: #472352, closes: #420007)
* debian/control: bump standard-version

Show diffs side-by-side

added added

removed removed

Lines of Context:
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