mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
fcd16abf29
- 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]
24 lines
382 B
Bash
24 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
|