summaryrefslogtreecommitdiff
path: root/setup/SunOS/r.drvcfg
blob: 713ef60f9a80371d029399bf9e29d11a0d6da2fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
#
# Copyright (c) 2005 by 4Front Technologies
# All rights reserved.
#
#

while read src
do
	if [ -f $src ]
	then
		if  /usr/sbin/pkgchk -p $src
		then
			rm -f $src
		else
			echo "not removing $src"
		fi
	fi
done
exit 0