]> git.proxmox.com Git - mirror_frr.git/blob - redhat/ospf6d.init
renamed ports/redhat to redhat/
[mirror_frr.git] / redhat / ospf6d.init
1 #!/bin/bash
2 #
3 # chkconfig: - 16 84
4 # description: An OSPF routing engine for use with Zebra and IPv6
5 #
6 # processname: ospf6d
7 # config: /etc/zebra/ospf6d.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/ospf6d.conf ] || exit 0
20
21 RETVAL=0
22 prog="ospf6d"
23
24 case "$1" in
25 start)
26 echo -n $"Starting $prog: "
27 daemon /usr/sbin/ospf6d -d
28 RETVAL=$?
29 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/ospf6d
30 echo
31 ;;
32 stop)
33 echo -n $"Shutting down $prog: "
34 killproc ospf6d
35 RETVAL=$?
36 [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ospf6d
37 echo
38 ;;
39 restart|reload)
40 $0 stop
41 $0 start
42 RETVAL=$?
43 ;;
44 condrestart)
45 if [ -f /var/lock/subsys/ospf6d ]; then
46 $0 stop
47 $0 start
48 fi
49 RETVAL=$?
50 ;;
51 status)
52 status ospf6d
53 RETVAL=$?
54 ;;
55 *)
56 echo $"Usage: $prog {start|stop|restart|reload|condrestart|status}"
57 exit 1
58 esac
59
60 exit $RETVAL