summaryrefslogtreecommitdiff
path: root/debian/libapache-mod-php5.prerm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/libapache-mod-php5.prerm')
-rw-r--r--debian/libapache-mod-php5.prerm17
1 files changed, 0 insertions, 17 deletions
diff --git a/debian/libapache-mod-php5.prerm b/debian/libapache-mod-php5.prerm
deleted file mode 100644
index 52a3c9638..000000000
--- a/debian/libapache-mod-php5.prerm
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-set -e
-
-#DEBHELPER#
-
-if [ "$1" != "remove" -a "$1" != "purge" ]; then
- exit 0
-fi
-
-for i in apache apache-ssl apache-perl; do
- if [ -e /etc/$i/httpd.conf ]; then
- apache-modconf $i disable mod_php5 quiet
- fi
-done
-
-exit 0