2000-07-26 20:23:33 -04:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-05-25 06:38:58 -04:00
|
|
|
# $OpenBSD: DEINSTALL,v 1.2 2002/05/25 10:38:58 reinhard Exp $
|
2000-07-26 20:23:33 -04:00
|
|
|
#
|
|
|
|
# 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.
|
2002-05-25 06:38:58 -04:00
|
|
|
|
|
|
|
|
| Do not do this if you plan on re-installing $1
|
|
|
|
| at some future time.
|
2000-07-26 20:23:33 -04:00
|
|
|
+---------------
|
|
|
|
|
|
|
|
EOT
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
|