From 3602051f0fee67040df432f60bd006777b26c97b Mon Sep 17 00:00:00 2001 From: nico Date: Mon, 18 Apr 2005 06:41:36 +0000 Subject: Add snort package, with experimental -custom package for build-time package customizations git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@667 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/snort/ipkg/snort.init | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 package/snort/ipkg/snort.init (limited to 'package/snort/ipkg/snort.init') diff --git a/package/snort/ipkg/snort.init b/package/snort/ipkg/snort.init new file mode 100644 index 000000000..8c019c41d --- /dev/null +++ b/package/snort/ipkg/snort.init @@ -0,0 +1,23 @@ +#!/bin/sh + +DEFAULT=/etc/default/snort +LOG_D=/var/log/snort +RUN_D=/var/run +[ -f $DEFAULT ] && . $DEFAULT +PID_F=$RUN_D/snort_$INTERFACE.pid + +case $1 in + start) + [ -d $LOG_D ] || mkdir -p $LOG_D + [ -d $RUN_D ] || mkdir -p $RUN_D + snort $OPTIONS + ;; + stop) + [ -f $PID_F ] && kill $(cat $PID_F) + ;; + *) + echo "usage: $0 (start|stop)" + exit 1 +esac + +exit $? -- cgit v1.2.3