summaryrefslogtreecommitdiff
path: root/usr/src/pkgdefs/SUNWrtls/postremove
blob: 19377109949c09ff24adc380462da5f8954983f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/sbin/sh
#
# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# ident	"%Z%%M%	%I%	%E% SMI"
#

BD=${BASEDIR:-/}
if grep -w rtls $BD/etc/name_to_major > /dev/null 2>&1
then
	rem_drv -b ${BD} rtls
	if [ $? -ne 0 ]
	then
		exit 1 	
	fi
fi
exit 0