blob: 26c153bf96429c667cad4b6deeb9998b76f0838a [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001#!/bin/bash
2#
3# chkconfig: - 16 84
4# description: A RIP routing engine for use with Zebra and IPv6
5#
6# processname: ripngd
7# config: /etc/ripngd.conf
8
9# source function library
10. /etc/rc.d/init.d/functions
11
12RETVAL=0
13
14[ -f /etc/ripngd.conf ] || exit 0
15
16case "$1" in
17 start)
18 echo -n "Starting ripngd: "
19 daemon /usr/sbin/ripngd -d
20 RETVAL=$?
21 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/ripngd
22 echo
23 ;;
24 stop)
25 echo -n "Shutting down ripngd: "
26 killproc ripngd
27 RETVAL=$?
28 [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ripngd
29 echo
30 ;;
31 restart)
32 $0 stop
33 $0 start
34 RETVAL=$?
35 ;;
36 status)
37 status ripngd
38 RETVAL=$?
39 ;;
40 *)
41 echo "Usage: ripngd {start|stop|restart|status}"
42 exit 1
43esac
44
45exit $RETVAL