summaryrefslogtreecommitdiff
path: root/net-mgmt/netmond/pkg-deinstall
blob: 5eccdad1914c41f083b0d5b29518f4f0bb15a348 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#
PKGNAME=$1
#
case $2 in
    DEINSTALL)
	;;
    POST-DEINSTALL)
	echo ""
	echo "If you wish to remove this port from your computer complete,"
	echo "remove user 'netmon' and group 'netmon' manually."
	echo ""
	;;
    *)
	echo "Unexpected Argument $2!!!"
	exit 1
	;;
esac
exit 0