summaryrefslogtreecommitdiff
path: root/net/ntop/files/pkg-deinstall.in
blob: 2e0d9914e1da3d1ce3ccd1d253d5acce2fcc2825 (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$
#

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 "     %%DBDIR%%/ntop can be removed if this port will not be"
		echo "     reinstalled."
		echo ""
		;;
	*)
		exit 64
		;;
esac
exit 0