diff options
Diffstat (limited to 'obsolete-buildroot/sources/openwrt/ipkg/fprobe')
4 files changed, 0 insertions, 41 deletions
diff --git a/obsolete-buildroot/sources/openwrt/ipkg/fprobe/CONTROL/conffiles b/obsolete-buildroot/sources/openwrt/ipkg/fprobe/CONTROL/conffiles deleted file mode 100644 index d498dc49c..000000000 --- a/obsolete-buildroot/sources/openwrt/ipkg/fprobe/CONTROL/conffiles +++ /dev/null @@ -1 +0,0 @@ -/etc/fprobe.conf diff --git a/obsolete-buildroot/sources/openwrt/ipkg/fprobe/CONTROL/control b/obsolete-buildroot/sources/openwrt/ipkg/fprobe/CONTROL/control deleted file mode 100644 index d17142d3a..000000000 --- a/obsolete-buildroot/sources/openwrt/ipkg/fprobe/CONTROL/control +++ /dev/null @@ -1,9 +0,0 @@ -Package: fprobe -Priority: optional -Section: net -Version: TBDL -Architecture: TBDL -Maintainer: Nico <nthill@free.fr> -Source: http://openwrt.org/cgi-bin/viewcvs.cgi/buildroot/ -Description: a NetFlow probe -Depends: libpcap, libpthread 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 $? |