1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
#! /bin/sh
# prerm for libapache-mod-python, based on:
# prem for libapache-mod-perl, based on:
# prerm.skeleton
# Skeleton maintainer script showing all the possible cases.
# Written by Charles Briscoe-Smith, March-April 1998. Public Domain.
# Abort if any command returns an error value
set -e
# DJ: function to comment us out in httpd.conf
killconf () {
tmpfile=/etc/apache/httpd.conf.tmp.$$
cat /etc/apache/httpd.conf |\
sed 's/^LoadModule.*mod_python\.so/#&/' > $tmpfile
mv -f $tmpfile /etc/apache/httpd.conf
ask_restart
}
# Restart apache if user wants.
ask_restart () {
echo -n "An Apache module has been modified. Restart apache [Y/n]? "
read CONFIG
if [ ".$CONFIG" != ".n" -a ".$CONFIG" != ".N" ]
then
/usr/sbin/apachectl restart || true
fi
}
# This script is called twice during the removal of the package; once
# after the removal of the package's files from the system, and as
# the final step in the removal of this package, after the package's
# conffiles have been removed.
case "$1" in
remove|purge)
# This package has been removed, but its configuration has not yet
# been purged.
# Make sure that httpd.conf exists before modifying it.
test -e /etc/apache/httpd.conf && killconf
if [ -d /usr/lib/python2.1/site-packages/mod_python/ ] ; then
rm -f /usr/lib/python2.1/site-packages/mod_python/*.pyc
rm -f /usr/lib/python2.1/site-packages/mod_python/*.pyo
rmdir --ignore-fail-on-non-empty /usr/lib/python2.1/site-packages/mod_python/
fi
;;
upgrade | deconfigure | failed-upgrade)
:
;;
*) echo "$0: didn't understand being called with \`$1'" 1>&2
exit 1
;;
esac
#DEBHELPER#
exit 0
|