641cff9b9c
- clean up Makefile and wrapper scripts some more - better INSTALL/DEINSTALL script - be able to compile w/ old nessus pkg installed (thx rdump@river.com) - make it think nmap is always present to avoid dependency (espie@)
21 lines
277 B
Bash
21 lines
277 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: DEINSTALL,v 1.1 2000/07/27 00:23:34 matt Exp $
|
|
#
|
|
# Nessus de-installation
|
|
|
|
set -e
|
|
PATH=/bin
|
|
|
|
cat <<EOT
|
|
|
|
+---------------
|
|
| To completely deinstall the $1 package, you need to manually
|
|
| delete /etc/nessus and /var/nessus.
|
|
+---------------
|
|
|
|
EOT
|
|
|
|
exit 0
|
|
|