#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.3 2003/04/26 14:55:32 sturm 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.
|
| Do not do this if you plan on re-installing $1
| at some future time.
+---------------

EOT

exit 0

