3 # chkconfig: 2345 16 84
4 # description: An ISIS routing engine for use with Quagga
7 # config: /etc/quagga/isisd.conf
9 # source function library
10 .
/etc
/rc.d
/init.d
/functions
13 .
/etc
/sysconfig
/network
15 # Check that networking is up.
16 [ "${NETWORKING}" = "no" ] && exit 0
18 # The process must be configured first.
19 [ -f /etc
/quagga
/isisd.conf
] ||
exit 0
27 echo -n $
"Starting $prog: "
28 daemon
/usr
/sbin
/isisd
-d
30 [ $RETVAL -eq 0 ] && touch /var
/lock
/subsys
/isisd
34 echo -n $
"Shutting down $prog: "
37 [ $RETVAL -eq 0 ] && rm -f /var
/lock
/subsys
/isisd
46 if [ -f /var
/lock
/subsys
/isisd
]; then
57 echo $
"Usage: $0 {start|stop|restart|reload|condrestart|status}"