blob: 986f6f82e888f64dc49f0de084c3d981b32ea767 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#! /bin/bash
declare progname=${0##*/}
declare action=$1; shift
conf=$1; shift
pid=/var/run/vyatta/wlb.pid
test -x $bb || exit 0
start ()
{
start-stop-daemon --background --start --quiet --oknodo --exec /opt/vyatta/sbin/wan_lb -- -f /run/load-balance/wlb.conf -d -i $pid
}
stop ()
{
if [ -f $pid ]
then
kill -s SIGTERM $( cat $pid )
fi
}
case "$action" in
start) start;;
stop) stop;;
force-reload) stop; sleep 1; start;;
restart) stop; sleep 1; start;;
*) echo "Usage: $progname {start|stop|restart}"
exit 1
esac
|