diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-12-12 03:52:27 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-12-12 03:52:27 +0000 |
commit | dab76b42698d91d3ed0a5f50168577c22e10ba08 (patch) | |
tree | 4c1886a9d320550846b2bba0e92e06ee27f5edc4 /openwrt/package/snort/files | |
parent | 81d91695f5e0d00c532047579c456f9a276087ad (diff) |
move init scripts and related out of ipkg/
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2637 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/snort/files')
-rw-r--r-- | openwrt/package/snort/files/snort.default | 2 | ||||
-rw-r--r-- | openwrt/package/snort/files/snort.init | 23 |
2 files changed, 25 insertions, 0 deletions
diff --git a/openwrt/package/snort/files/snort.default b/openwrt/package/snort/files/snort.default new file mode 100644 index 0000000000..796a893b02 --- /dev/null +++ b/openwrt/package/snort/files/snort.default @@ -0,0 +1,2 @@ +INTERFACE="vlan1" # WAN +OPTIONS="-i $INTERFACE -c /etc/snort/snort.conf -D -N -q -s" diff --git a/openwrt/package/snort/files/snort.init b/openwrt/package/snort/files/snort.init new file mode 100644 index 0000000000..8c019c41d4 --- /dev/null +++ b/openwrt/package/snort/files/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 $? |