summaryrefslogtreecommitdiff
path: root/sysutils/ispman/pkg-deinstall
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/ispman/pkg-deinstall')
-rw-r--r--sysutils/ispman/pkg-deinstall16
1 files changed, 0 insertions, 16 deletions
diff --git a/sysutils/ispman/pkg-deinstall b/sysutils/ispman/pkg-deinstall
deleted file mode 100644
index 8fc6c660e006..000000000000
--- a/sysutils/ispman/pkg-deinstall
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-#
-
-case $2 in
- DEINSTALL)
- # Remove real files which was copied from *.default.
- for i in lib templates; do
- for j in `find ${PKG_PREFIX}/ispman/${i} -name '*.default'`; do
- real=${j%.default}
- cmp -s $j $real && rm -rf $real
- done
- done
- ;;
-esac
-
-exit 0