From 67394da2b69be2b9889ea66e8d0aa7019b24258a Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Sat, 15 Apr 2006 16:29:27 +0000 Subject: After a recent discussion on freebsd-ports, I have modified the Horde ports, so that they now do not overwrite existing configuration files. Rather than backing up the old ones and allowing the user to merge the files by hand, config files are left untouched. Submitted by: Shaun Amott --- ftp/gollem/files/pkg-deinstall.in | 9 +++------ ftp/gollem/files/pkg-install.in | 23 +++++++++++++++++++++++ 2 files changed, 26 insertions(+), 6 deletions(-) create mode 100644 ftp/gollem/files/pkg-install.in (limited to 'ftp/gollem') diff --git a/ftp/gollem/files/pkg-deinstall.in b/ftp/gollem/files/pkg-deinstall.in index 5c399f4c3632..74ba43ea36c6 100644 --- a/ftp/gollem/files/pkg-deinstall.in +++ b/ftp/gollem/files/pkg-deinstall.in @@ -12,13 +12,10 @@ if [ -z "${PACKAGE_BUILDING}" ]; then for cf in `ls %%GOLLEMDIR%%/config/*php`; do diff -bBqw $cf $cf.dist >/dev/null 2>&1 case $? in - 0) # original config file, will be deleted by pkg-plist + 0) # original config file, delete it + rm -f $cf ;; - 1) # config file has been updated, must be backuped - cp -p $cf $cf.previous - echo "===> Backing-up..." - echo "---> $cf has been saved ***" - echo "---> as $cf.previous ***" + 1) # config file has been updated, leave it alone ;; *) # not found? ;; diff --git a/ftp/gollem/files/pkg-install.in b/ftp/gollem/files/pkg-install.in new file mode 100644 index 000000000000..49c99fa99dee --- /dev/null +++ b/ftp/gollem/files/pkg-install.in @@ -0,0 +1,23 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +PATH=/usr/sbin:/usr/bin:/bin ; export PATH + +case $2 in + PRE-INSTALL) + ;; + + POST-INSTALL) + if [ -z "${PACKAGE_BUILDING}" ]; then + # Copy over sample config files unless they already exist + + for cf in `ls %%GOLLEMDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do + if [ ! -f $cf ]; then + cp -p $cf.dist $cf + fi + done + fi + ;; +esac -- cgit v1.2.3