blob: be54a0136893b55bad9902e3ae371165570e5a4b [file] [log] [blame]
paul788cdc62003-01-18 00:22:08 +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/zebra/ripngd.conf
8
9# source function library
10. /etc/rc.d/init.d/functions
11
12# Get network config
13. /etc/sysconfig/network
14
15# Check that networking is up.
16[ "${NETWORKING_IPV6}" = "no" ] && exit 0
17
18# The process must be configured first.
19[ -f /etc/zebra/ripngd.conf ] || exit 0
20
21RETVAL=0
22prog="ripngd"
23
24case "$1" in
25 start)
26 echo -n $"Starting $prog: "
27 daemon /usr/sbin/ripngd -d
28 RETVAL=$?
29 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/ripngd
30 echo
31 ;;
32 stop)
33 echo -n $"Shutting down $prog: "
34 killproc ripngd
35 RETVAL=$?
36 [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ripngd
37 echo
38 ;;
39 restart|reload)
40 $0 stop
41 $0 start
42 RETVAL=$?
43 ;;
44 condrestart)
45 if [ -f /var/lock/subsys/ripngd ]; then
46 $0 stop
47 $0 start
48 fi
49 RETVAL=$?
50 ;;
51 status)
52 status ripngd
53 RETVAL=$?
54 ;;
55 *)
56 echo $"Usage: $0 {start|stop|restart|reload|condrestart|status}"
57 exit 1
58esac
59
60exit $RETVAL