blob: 5eccdad1914c41f083b0d5b29518f4f0bb15a348 (
plain) (
tree)
|
|
#!/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
|