From 3c8cf7007a189ff51283c5bc2fdbf319adade7df Mon Sep 17 00:00:00 2001 From: Michael Larson Date: Wed, 20 Feb 2008 06:13:29 -0800 Subject: added vyatta-wanloadbalance.init --- scripts/vyatta-wanloadbalance.init | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 scripts/vyatta-wanloadbalance.init (limited to 'scripts') diff --git a/scripts/vyatta-wanloadbalance.init b/scripts/vyatta-wanloadbalance.init new file mode 100644 index 0000000..decb811 --- /dev/null +++ b/scripts/vyatta-wanloadbalance.init @@ -0,0 +1,30 @@ +#! /bin/bash + +declare progname=${0##*/} +declare action=$1; shift + +conf=$1; shift +pid=/var/run/vyatta/wlb.pid + +test -x $bb || exit 0 + +start () +{ + /opt/vyatta/sbin/wan_lb -f $conf -d -i $pid +} + +stop () +{ + if [ -f $pid ] + then + kill -s SIGTERM $( cat $pid ) 2>/dev/null + fi +} + +case "$action" in + start) start;; + stop) stop;; + restart) stop; sleep 1; start;; + *) echo "Usage: $progname {start|stop|restart}" + exit 1 +esac -- cgit v1.2.3