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