]> git.proxmox.com Git - mirror_frr.git/blobdiff - redhat/bgpd.init
2003-12-30 Paul Jakma <paul@dishone.st>
[mirror_frr.git] / redhat / bgpd.init
index 296b91532eb5ad475613943beeca8f17d9b8a095..ef59c2a61f440ab59bb427a9272fcaf475f7ed64 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# chkconfig: - 16 84
+# chkconfig: 2345 16 84
 # description: A BGPv4, BGPv4+, BGPv4- routing engine for use with Zebra
 #
 # processname: bgpd
@@ -12,6 +12,9 @@
 # Get network config
 . /etc/sysconfig/network
 
+# quagga command line options
+. /etc/sysconfig/quagga
+
 # Check that networking is up.
 [ "${NETWORKING}" = "no" ] && exit 0
 
@@ -24,7 +27,7 @@ prog="bgpd"
 case "$1" in
   start)
        echo -n $"Starting $prog: "
-        daemon /usr/sbin/bgpd -d
+        daemon /usr/sbin/bgpd -d $BGPD_OPTS
        RETVAL=$?
        [ $RETVAL -eq 0 ] && touch /var/lock/subsys/bgpd
        echo