sturm bee90aff48 - fix @extra
- remove WWW: while here

thanks to Michael Coulter for noticing
2003-12-06 08:05:57 +00:00

26 lines
404 B
Bash

#!/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 ${SYSCONFDIR}/nessus and /var/nessus.
|
| Do not do this if you plan on re-installing $1
| at some future time.
+---------------
EOT
fi
exit 0