summaryrefslogtreecommitdiff
path: root/sysutils/ispman/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/ispman/pkg-install')
-rw-r--r--sysutils/ispman/pkg-install14
1 files changed, 0 insertions, 14 deletions
diff --git a/sysutils/ispman/pkg-install b/sysutils/ispman/pkg-install
deleted file mode 100644
index 3d7d9574cf45..000000000000
--- a/sysutils/ispman/pkg-install
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-#
-
-case $2 in
- POST-INSTALL)
- # Install real files from *.default.
- for i in lib templates; do
- for j in `find ${PKG_PREFIX}/ispman/${i} -name '*.default'`; do
- real=${j%.default}
- [ -f $real ] || cp -p $j $real
- done
- done
- ;;
-esac