freebsd-ports/net/ntop/files/pkg-deinstall.in
Marcus Alves Grando fcd16abf29 - Add libxml2 dependency [1]
- Bump PORTREVISION [1]
- Remove IS_INTERACTIVE and admin password creation from installation and put admin password check in rc.d script
- Add OPTIONS to install AS data [2]
- portlint(1)

PR:		94672 [1], 94809 [2]
Submitted by:	maintainer
Notified by:	Andy Wettstein [1]
2006-03-22 19:25:52 +00:00

23 lines
382 B
Bash

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