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