diff options
author | Andy Boyett <agb@openwrt.org> | 2009-12-26 19:21:10 +0000 |
---|---|---|
committer | Andy Boyett <agb@openwrt.org> | 2009-12-26 19:21:10 +0000 |
commit | 76c9220efaf46f8fe762a9f86dc4c35f517c396e (patch) | |
tree | 61f5cf598695629bbaac1885eec970cd40c63b8f /package/wprobe | |
parent | b47322421d06c8919326dbcf666f6f3e04135b86 (diff) | |
download | upstream-76c9220efaf46f8fe762a9f86dc4c35f517c396e.tar.gz upstream-76c9220efaf46f8fe762a9f86dc4c35f517c396e.tar.bz2 upstream-76c9220efaf46f8fe762a9f86dc4c35f517c396e.zip |
[package] wprobe: fix interface selection. Thanks morpheus, Freifunk Aurich
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18946 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wprobe')
-rwxr-xr-x | package/wprobe/files/wprobe.init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/wprobe/files/wprobe.init b/package/wprobe/files/wprobe.init index 26d5c3d312..b35246d42e 100755 --- a/package/wprobe/files/wprobe.init +++ b/package/wprobe/files/wprobe.init @@ -1,6 +1,6 @@ #!/bin/sh /etc/rc.common START=90 -EXPORTER=/usr/sbin/wprobe-ipfix +EXPORTER=/sbin/wprobe-export UTIL=/sbin/wprobe-util wprobe_ssd() { @@ -30,7 +30,7 @@ start_proxy() { start_ipfix() { local cfg="$1" - config_get ifname "$cfg" interface + config_get ifname "$cfg" ifname config_get host "$cfg" host config_get port "$cfg" port config_get proto "$cfg" proto |