diff options
Diffstat (limited to 'www/horde-ansel/files/pkg-install.in')
-rw-r--r-- | www/horde-ansel/files/pkg-install.in | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/www/horde-ansel/files/pkg-install.in b/www/horde-ansel/files/pkg-install.in deleted file mode 100644 index 1a51120f18b0..000000000000 --- a/www/horde-ansel/files/pkg-install.in +++ /dev/null @@ -1,24 +0,0 @@ -#!/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 %%ANSDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do - if [ ! -f $cf ]; then - cp -p $cf.dist $cf - fi - done - fi - ;; -esac |