openbsd-ports/security/logcheck/pkg/DEINSTALL
jsyn d1edbcc265 Import of logcheck-1.1.1:
--
Logcheck is a scheduled auditing tool that scans system log files
for security violations and unusual activity.  Reports of suspicious
log entries are mailed to a specified user (usually root).

WWW: http://www.psionic.com/abacus/logcheck

MAINTAINER= Srebrenko Sehic <haver@insecure.dk>
2001-12-03 19:17:33 +00:00

28 lines
663 B
Bash

#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1.1.1 2001/12/03 19:17:33 jsyn Exp $
#
# logcheck de-installation
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONFIG_DIR=${SYSCONFDIR}/logcheck
TMP_DIR=/var/tmp/logcheck
if [ -d $CONFIG_DIR ]; then
echo
echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform"
echo "| these steps as root:"
echo "|"
echo "| rm -rf ${CONFIG_DIR}"
echo "| rm -rf ${TMP_DIR}"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| at some future time."
echo "+---------------"
echo
fi
exit 0