summaryrefslogtreecommitdiff
path: root/www/horde2/pkg-deinstall
diff options
context:
space:
mode:
Diffstat (limited to 'www/horde2/pkg-deinstall')
-rw-r--r--www/horde2/pkg-deinstall13
1 files changed, 0 insertions, 13 deletions
diff --git a/www/horde2/pkg-deinstall b/www/horde2/pkg-deinstall
deleted file mode 100644
index 6a75b26f7a23..000000000000
--- a/www/horde2/pkg-deinstall
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-# Try to restore httpd.conf when deinstalling Horde
-
-if [ x$2 != xDEINSTALL ]; then
- exit
-fi
-
-if [ -f ${PKG_PREFIX}/etc/apache/httpd.conf.beforeHorde ] ; then
- echo "Restoring httpd.conf..."
- cp ${PKG_PREFIX}/etc/apache/httpd.conf ${PKG_PREFIX}/etc/apache/httpd.conf.deinstHorde
- perl -pi -e "s:Include ${PKG_PREFIX}/etc/horde:# Include ${PKG_PREFIX}/etc/horde:g" \
- ${PKG_PREFIX}/etc/apache/httpd.conf
-fi