aboutsummaryrefslogtreecommitdiff
path: root/net/ntop/pkg-deinstall
blob: 75f7c1047af084e97de3d1262035e55299d7d173 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/net/ntop/Attic/pkg-deinstall,v 1.1 2005-12-12 07:03:16 lawrance Exp $
#

case $2 in
DEINSTALL)
	;;
POST-DEINSTALL)
	echo "===> post-deinstallation information for $1"
	echo ""
	echo "     Please note that ntop was not completely removed"
	echo "     from this system:"
	echo ""
	echo "     /var/db/ntop can be removed if this port will not be"
	echo "     reinstalled."
	echo ""
	;;
*)
	exit 64
	;;
esac
exit 0