aboutsummaryrefslogtreecommitdiff
path: root/www/horde-trean/files/pkg-install.in
diff options
context:
space:
mode:
Diffstat (limited to 'www/horde-trean/files/pkg-install.in')
-rw-r--r--www/horde-trean/files/pkg-install.in24
1 files changed, 0 insertions, 24 deletions
diff --git a/www/horde-trean/files/pkg-install.in b/www/horde-trean/files/pkg-install.in
deleted file mode 100644
index 03b0d3f08c38..000000000000
--- a/www/horde-trean/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 %%TREANDIR%%/config/*.dist | sed -e 's/\.dist//g'`; do
- if [ ! -f $cf ]; then
- cp -p $cf.dist $cf
- fi
- done
- fi
- ;;
-esac