#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.4 2003/12/06 08:05:57 sturm Exp $
#
# Nessus de-installation

set -e
PATH=/bin

if [ "$PKG_DELETE_EXTRA" != Yes ]; then
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
fi

exit 0

