summaryrefslogtreecommitdiffstats
path: root/sysutils/ispman/pkg-install
blob: 3d7d9574cf45453fa64df2cdf7eccb010cc1808f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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
OpenPOWER on IntegriCloud