diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/ulogd/README | 12 | ||||
-rw-r--r-- | system/ulogd/doinst.sh | 17 | ||||
-rw-r--r-- | system/ulogd/rc.ulogd | 37 | ||||
-rw-r--r-- | system/ulogd/slack-desc | 11 | ||||
-rw-r--r-- | system/ulogd/ulogd.SlackBuild | 89 | ||||
-rw-r--r-- | system/ulogd/ulogd.info | 8 |
6 files changed, 174 insertions, 0 deletions
diff --git a/system/ulogd/README b/system/ulogd/README new file mode 100644 index 0000000000..81bab94919 --- /dev/null +++ b/system/ulogd/README @@ -0,0 +1,12 @@ +ulogd is a handy add-on for netfilter/iptables which allows you to +have your firewall logs put somewhere besides the main system logs +Be sure to check the documentation in /usr/doc/ulogd-$VERSION + +You get an init script free of charge: /etc/rc.d/rc.ulogd -- +You'll just have to make it executable and call it from one of your +init scripts. Also, be sure to have a look at /etc/ulogd.conf; +it works fine with the default, but you might want to customize it... + +You'll also need to make sure you have the ULOG target support in +your kernel config. + diff --git a/system/ulogd/doinst.sh b/system/ulogd/doinst.sh new file mode 100644 index 0000000000..cecac19279 --- /dev/null +++ b/system/ulogd/doinst.sh @@ -0,0 +1,17 @@ +config() { + NEW="$1" + OLD="`dirname $NEW`/`basename $NEW .new`" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/ulogd.conf.new +config etc/rc.d/rc.ulogd.new +config etc/logrotate.d/ulogd.logrotate.new + diff --git a/system/ulogd/rc.ulogd b/system/ulogd/rc.ulogd new file mode 100644 index 0000000000..ba7bcc3568 --- /dev/null +++ b/system/ulogd/rc.ulogd @@ -0,0 +1,37 @@ +#!/bin/sh +# Start/stop/restart the userspace logging daemon ulogd +# +# Written for Slackware Linux by Robby Workman <http://rlworkman.net> +# ## (by modifying one of Pat's scripts) + +ulogd_start() { + if [ -x /usr/sbin/ulogd ]; then + /bin/echo "Starting ulogd daemon: /usr/sbin/ulogd " + /usr/sbin/ulogd -d 2> /dev/null + /bin/sleep 1 + fi +} + +ulogd_stop() { + /bin/killall ulogd 2> /dev/null +} + +ulogd_restart() { + ulogd_stop + /bin/sleep 1 + ulogd_start +} + +case "$1" in +'start') + ulogd_start + ;; +'stop') + ulogd_stop + ;; +'restart') + ulogd_restart + ;; +*) + echo "usage $0 start|stop|restart" +esac diff --git a/system/ulogd/slack-desc b/system/ulogd/slack-desc new file mode 100644 index 0000000000..37342d00f6 --- /dev/null +++ b/system/ulogd/slack-desc @@ -0,0 +1,11 @@ +ulogd: Harald Welte's Userspace Logging Daemon +ulogd: +ulogd: ulogd is a handy add-on for netfilter/iptables which allows you to +ulogd: have your firewall logs put somewhere besides the main system logs +ulogd: Be sure to check the documentation in /usr/doc/ulogd-$VERSION +ulogd: +ulogd: You get an init script free of charge: /etc/rc.d/rc.ulogd -- +ulogd: You'll just have to make it executable and call it from one of your +ulogd: init scripts. Also, have a look at /etc/ulogd.conf - it works fine +ulogd: with the default, but you might want to customize it. +ulogd: diff --git a/system/ulogd/ulogd.SlackBuild b/system/ulogd/ulogd.SlackBuild new file mode 100644 index 0000000000..f8558543b4 --- /dev/null +++ b/system/ulogd/ulogd.SlackBuild @@ -0,0 +1,89 @@ +#!/bin/sh + +# Slackware build script for ulogd + +# Copyright 2006 Robby Workman (http://rlworkman.net) +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Modified by the SlackBuilds.org project + +PRGNAM=ulogd +VERSION=1.24 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-4} +TAG=${TAG:-_SBo} +CWD=`pwd` +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION || exit 1 +chown -R root:root . +chmod -R a-s,u+w,go+r-w . + +CFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + || exit 1 + +make || exit 1 +make install DESTDIR=$PKG || exit 1 + +find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +find $PKG | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + +install -D -m 0755 $CWD/rc.ulogd $PKG/etc/rc.d/rc.ulogd.new +mv $PKG/etc/ulogd.conf $PKG/etc/ulogd.conf.new + +# Install logrotate script +install -D -m 0644 ulogd.logrotate $PKG/etc/logrotate.d/ulogd.logrotate.new + +# Install man page +mkdir -p $PKG/usr/man/man8 +cat ulogd.8 | gzip -9 > $PKG/usr/man/man8/ulogd.8.gz + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING README TODO Changes $PKG/usr/doc/$PRGNAM-$VERSION +for i in \ + mysql.table mysql.table.ipaddr-as-string pgsql.table sqlite3.table \ + ulogd.a4.ps ulogd.html ulogd.sgml ulogd.txt ; +do cat doc/$i > $PKG/usr/doc/$PRGNAM-$VERSION/$i ; +done +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/system/ulogd/ulogd.info b/system/ulogd/ulogd.info new file mode 100644 index 0000000000..e6a4d5c3af --- /dev/null +++ b/system/ulogd/ulogd.info @@ -0,0 +1,8 @@ +PRGNAM="ulogd" +VERSION="1.24" +HOMEPAGE="http://www.netfilter.org/projects/ulogd/index.html" +DOWNLOAD="http://www.netfilter.org/projects/ulogd/files/ulogd-1.24.tar.bz2" +MD5SUM="05b4ed2926b9a22aaeaf642917bbf8ff" +MAINTAINER="Robby Workman" +EMAIL="rw@rlworkman.net" +APPROVED="robw810" |