summaryrefslogtreecommitdiffstats
path: root/package/wprobe/files
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-03-29 05:01:25 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-03-29 05:01:25 +0000
commit26c5a541b58cce78b978e1ead03945dbc522484d (patch)
treeacc4a647572536b1001f57395810affc6f915e53 /package/wprobe/files
parent7749fd73290bf6bbc91b068e40e270cc68269168 (diff)
wprobe: add init script for exporter
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15066 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wprobe/files')
-rwxr-xr-xpackage/wprobe/files/wprobe.init46
1 files changed, 46 insertions, 0 deletions
diff --git a/package/wprobe/files/wprobe.init b/package/wprobe/files/wprobe.init
new file mode 100755
index 000000000..3c62a0306
--- /dev/null
+++ b/package/wprobe/files/wprobe.init
@@ -0,0 +1,46 @@
+#!/bin/sh /etc/rc.common
+START=90
+
+wprobe_ssd() {
+ local cfg="$1"; shift
+ local cmd="$1"; shift
+ start-stop-daemon "$cmd" -p "/var/run/wprobe-$cfg.pid" -b -x /sbin/wprobe-export -m -- "$@"
+}
+
+stop_wprobe() {
+ local cfg="$1"
+ [ -f "/var/run/wprobe-$cfg.pid" ] && wprobe_ssd "$cfg" -K
+ rm -f "/var/run/wprobe-$cfg.pid"
+}
+
+start_wprobe() {
+ local cfg="$1"
+ config_get ifname "$cfg" interface
+ config_get host "$cfg" host
+ config_get port "$cfg" port
+ config_get proto "$cfg" proto
+ case "$proto" in
+ sctp) proto="-s";;
+ tcp) proto="-t";;
+ udp) proto="-u";;
+ *) proto="-t";;
+ esac
+ [ -z "$ifname" -o -z "$host" ] && {
+ echo "wprobe-export: missing host or interface name in config $cfg"
+ return
+ }
+ wprobe_ssd "$cfg" -S "$proto" -i "$ifname" -c "$host" -p "${port:-4739}"
+}
+
+stop() {
+ for f in /var/run/wprobe-*.pid; do
+ CFG="${f%%.pid}"
+ CFG="${CFG##/var/run/wprobe-}"
+ stop_wprobe "$CFG"
+ done
+}
+
+start() {
+ config_load wprobe
+ config_foreach start_wprobe wprobe
+}