File: libapache-mod-python2.1.prerm

package info (click to toggle)
libapache-mod-python 2%3A2.7.10-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,352 kB
  • ctags: 853
  • sloc: ansic: 2,785; python: 1,123; makefile: 298; sh: 172
file content (15 lines) | stat: -rw-r--r-- 255 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

if [ "$1" = "remove" -o "$1" = "purge" ]; then
    for i in apache apache-perl apache-ssl; do
        if [ -e /etc/$i/httpd.conf ]; then
            modules-config $i disable mod_python quiet
        fi
    done
fi

#DEBHELPER#

exit 0