diff options
Diffstat (limited to 'www/horde-ansel/files/pkg-deinstall.in')
-rw-r--r-- | www/horde-ansel/files/pkg-deinstall.in | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/www/horde-ansel/files/pkg-deinstall.in b/www/horde-ansel/files/pkg-deinstall.in deleted file mode 100644 index 85a5073df124..000000000000 --- a/www/horde-ansel/files/pkg-deinstall.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Backup ansel config files, if needed. - -if [ x$2 != xDEINSTALL ]; then - exit -fi - -if [ -z "${PACKAGE_BUILDING}" ]; then - for cf in `ls %%ANSDIR%%/config/*php`; 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 |