freebsd-ports/net-mgmt/netmond/pkg-deinstall
Sergey Matveychuk b4dd05271c Netmond - IP network monitoring daemon.
PR:		ports/65033
Submitted by:	Viktor Fomichev <vfom@narod.ru>
2004-08-18 17:08:08 +00:00

19 lines
289 B
Bash

#!/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