blob: 3033da277c06fb60e7cc5640da57b555dfc96a08 (
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
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/bin/sh
# rc.quagga will try to start any service that has configured a config file in /etc/quagga
start() {
for SERVICE in zebra bgpd ripd ospfd ripngd ospf6d isisd; do
if [ -r /etc/quagga/$SERVICE.conf ] ; then
echo -n "Starting ${SERVICE}: " && /usr/sbin/${SERVICE} -d && echo "done"
fi
done
}
stop() {
for SERVICE in zebra bgpd ripd ospfd ripngd ospf6d isisd; do
echo -n "Stopping ${SERVICE}: "
killall $SERVICE 2>/dev/null && echo -n "done" || echo -n "not started"
echo
done
}
restart() {
stop && sleep 2s && start
if [ -x /etc/rc.d/rc.watchquagga ] ; then
sh /etc/rc.d/rc.watchquagga restart
fi
}
case "$1" in
'start')
start
;;
'stop')
stop
;;
'restart')
restart
;;
*)
echo "usage $0 start|stop|restart"
esac
|