lebel 7261a131df initial import of net/oinkmaster-0.6:
--
Oinkmaster is simple Perl script released under the BSD license to help
you update your Snort 1.8+ rules and comment out the unwanted ones after
each update. It will tell you exactly what had changed since the last
update, hence giving you good control of your rules.

It's a variant of my (obsolete) arachNIDS snort rules updater
(http://nitzer.dhs.org/arachnids_upd/) which is pretty much the same
thing but for the arachNIDS Snort rules exports at
http://www.whitehats.com/.

Use with care and at your own risk.  Check out http://www.snort.org/ for
more information about Snort and its rules. Please note that the authors
of Snort have nothing to do with Oinkmaster so don't bother them about
silly Oinkmaster problems (and please don't hammer their site by
constant updating).

WWW: http://nitzer.dhs.org/oinkmaster/
2003-02-03 19:18:14 +00:00

26 lines
598 B
Bash

#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1.1.1 2003/02/03 19:18:14 lebel Exp $
#
# oinkmaster de-installation
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONFIG_DIR=${SYSCONFDIR}
if [ -d $CONFIG_DIR ]; then
echo
echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform"
echo "| this step as root:"
echo "|"
echo "| rm $CONFIG_DIR/oinkmaster.conf"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| at some future time."
echo "+---------------"
echo
fi
exit 0