summaryrefslogtreecommitdiff
path: root/debian/libapache2-mod-php5.postrm
diff options
context:
space:
mode:
authorsean finney <seanius@debian.org>2006-10-28 14:29:44 +0200
committerSean Finney <seanius@debian.org>2009-04-10 13:14:58 +0200
commitfe35193e44789fa17e5eafad3a76bf71a40570cc (patch)
treeb75d4c10bd2c6a113c93ea03d5c551e51be14b6d /debian/libapache2-mod-php5.postrm
parent98c09b2ce846f6bdaf0adbf66fffd9f7d58b5d33 (diff)
downloadphp-fe35193e44789fa17e5eafad3a76bf71a40570cc.tar.gz
Imported Debian patch 5.1.6-5debian/5.1.6-5
Diffstat (limited to 'debian/libapache2-mod-php5.postrm')
-rw-r--r--debian/libapache2-mod-php5.postrm42
1 files changed, 0 insertions, 42 deletions
diff --git a/debian/libapache2-mod-php5.postrm b/debian/libapache2-mod-php5.postrm
deleted file mode 100644
index 9417dbba4..000000000
--- a/debian/libapache2-mod-php5.postrm
+++ /dev/null
@@ -1,42 +0,0 @@
-#! /bin/sh
-# postrm script for #PACKAGE#
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <postrm> `remove'
-# * <postrm> `purge'
-# * <old-postrm> `upgrade' <new-version>
-# * <new-postrm> `failed-upgrade' <old-version>
-# * <new-postrm> `abort-install'
-# * <new-postrm> `abort-install' <old-version>
-# * <new-postrm> `abort-upgrade' <old-version>
-# * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
-# for details, see /usr/share/doc/packaging-manual/
-
-case "$1" in
- remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-
-
- ;;
-
- purge)
- rm -rf /etc/php5/apache2
- if [ -d /etc/php5 ]; then
- rmdir --ignore-fail-on-non-empty /etc/php5
- fi
- ;;
- *)
- echo "postrm called with unknown argument \`$1'" >&2
- exit 0
-
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0