From dab76b42698d91d3ed0a5f50168577c22e10ba08 Mon Sep 17 00:00:00 2001 From: nico Date: Mon, 12 Dec 2005 03:52:27 +0000 Subject: move init scripts and related out of ipkg/ git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2637 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/package/snort/ipkg/snort.default | 2 -- openwrt/package/snort/ipkg/snort.init | 23 ----------------------- 2 files changed, 25 deletions(-) delete mode 100644 openwrt/package/snort/ipkg/snort.default delete mode 100644 openwrt/package/snort/ipkg/snort.init (limited to 'openwrt/package/snort/ipkg') diff --git a/openwrt/package/snort/ipkg/snort.default b/openwrt/package/snort/ipkg/snort.default deleted file mode 100644 index 796a893b0..000000000 --- a/openwrt/package/snort/ipkg/snort.default +++ /dev/null @@ -1,2 +0,0 @@ -INTERFACE="vlan1" # WAN -OPTIONS="-i $INTERFACE -c /etc/snort/snort.conf -D -N -q -s" diff --git a/openwrt/package/snort/ipkg/snort.init b/openwrt/package/snort/ipkg/snort.init deleted file mode 100644 index 8c019c41d..000000000 --- a/openwrt/package/snort/ipkg/snort.init +++ /dev/null @@ -1,23 +0,0 @@ -#!/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