]> git.proxmox.com Git - mirror_frr.git/blob - redhat/bgpd.init
2003-08-14 Paul Jakma <paul@dishone.st>
[mirror_frr.git] / redhat / bgpd.init
1 #!/bin/bash
2 #
3 # chkconfig: - 16 84
4 # description: A BGPv4, BGPv4+, BGPv4- routing engine for use with Zebra
5 #
6 # processname: bgpd
7 # config: /etc/zebra/bgpd.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}" = "no" ] && exit 0
17
18 # The process must be configured first.
19 [ -f /etc/quagga/bgpd.conf ] || exit 0
20
21 RETVAL=0
22 prog="bgpd"
23
24 case "$1" in
25 start)
26 echo -n $"Starting $prog: "
27 daemon /usr/sbin/bgpd -d
28 RETVAL=$?
29 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/bgpd
30 echo
31 ;;
32 stop)
33 echo -n $"Shutting down $prog: "
34 killproc bgpd
35 RETVAL=$?
36 [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/bgpd
37 echo
38 ;;
39 restart|reload)
40 $0 stop
41 $0 start
42 RETVAL=$?
43 ;;
44 condrestart)
45 if [ -f /var/lock/subsys/bgpd ]; then
46 $0 stop
47 $0 start
48 fi
49 RETVAL=$?
50 ;;
51 status)
52 status bgpd
53 RETVAL=$?
54 ;;
55 *)
56 echo $"Usage: $0 {start|stop|restart|reload|condrestart|status}"
57 exit 1
58 esac
59
60 exit $RETVAL