diff options
author | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-10-17 12:24:08 +0000 |
---|---|---|
committer | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-10-17 12:24:08 +0000 |
commit | bf3eda107c10e5d73c716744bfadaee4b4ab0093 (patch) | |
tree | 5be4b26ccd509dcc7c91534d9095a6b0141908ce /obsolete-buildroot/sources/openwrt/ipkg/fprobe/root | |
parent | a14b6eb9921365d5c2ce4e3f9c7cbc73213770e7 (diff) |
removed the old directories, too.. cleanup is ready, yay
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2130 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'obsolete-buildroot/sources/openwrt/ipkg/fprobe/root')
-rw-r--r-- | obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/fprobe.conf | 8 | ||||
-rw-r--r-- | obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/init.d/fprobe | 23 |
2 files changed, 0 insertions, 31 deletions
diff --git a/obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/fprobe.conf b/obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/fprobe.conf deleted file mode 100644 index 3abfba6f9..000000000 --- a/obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/fprobe.conf +++ /dev/null @@ -1,8 +0,0 @@ -# Interface to listen on -IFNAME=any - -# NetFlow collector (host:port) -REMOTE=192.168.1.100:2055 - -# Maximum log level (0=EMERG, 1=ALERT, 2=CRIT, 3=ERR, 4=WARNING, 5=NOTICE, 6=INFO, 7=DEBUG) -LOG_LEVEL=3 diff --git a/obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/init.d/fprobe b/obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/init.d/fprobe deleted file mode 100644 index 2a61fceb9..000000000 --- a/obsolete-buildroot/sources/openwrt/ipkg/fprobe/root/etc/init.d/fprobe +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -DEFAULT=/etc/fprobe.conf -OPTIONS="" -[ -f $DEFAULT ] && . $DEFAULT -[ -n "$IFNAME" ] && OPTIONS="$OPTIONS -i $IFNAME" -[ -n "$LOG_LEVEL" ] && OPTIONS="$OPTIONS -v $LOG_LEVEL" -[ -n "$REMOTE" ] && OPTIONS="$OPTIONS $REMOTE" - -case $1 in - start) - [ -d /var/run ] || mkdir -p /var/run - /usr/sbin/fprobe $OPTIONS - ;; - stop) - [ -f /var/run/fprobe.pid ] && kill $(cat /var/run/fprobe.pid) >/dev/null 2>&1 - ;; - *) - echo "usage: $0 (start|stop)" - exit 1 -esac - -exit $? |