mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
19ef03a114
- Prompt for ntop admin password and set IS_INTERACTIVE only if necessary. - Quote BROKEN message. - Adds pkg-deinstall with cleanup instructions. - Submitter takes maintainership. PR: ports/90264 Submitted by: Wesley Shields <wxs@csh.rit.edu>
24 lines
451 B
Bash
24 lines
451 B
Bash
#!/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
|