summaryrefslogtreecommitdiff
path: root/mail/horde-imp/files/pkg-deinstall.in
diff options
context:
space:
mode:
Diffstat (limited to 'mail/horde-imp/files/pkg-deinstall.in')
-rw-r--r--mail/horde-imp/files/pkg-deinstall.in23
1 files changed, 0 insertions, 23 deletions
diff --git a/mail/horde-imp/files/pkg-deinstall.in b/mail/horde-imp/files/pkg-deinstall.in
deleted file mode 100644
index e4787a72dfe4..000000000000
--- a/mail/horde-imp/files/pkg-deinstall.in
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-if [ x$2 != xDEINSTALL ]; then
- exit
-fi
-
-if [ -z "${PACKAGE_BUILDING}" ]; then
- for cf in `ls %%IMPDIR%%/config/*php %%IMPDIR%%/config/*txt`; do
- diff -bBqw $cf $cf.dist >/dev/null 2>&1
- case $? in
- 0) # original config file, delete it
- rm -f $cf
- ;;
- 1) # config file has been updated, leave it alone
- ;;
- *) # not found?
- ;;
- esac
- done
-fi