summaryrefslogtreecommitdiffstats
path: root/redhat/ospfd.init
diff options
context:
space:
mode:
authorpaul <paul>2003-12-30 11:16:21 +0000
committerpaul <paul>2003-12-30 11:16:21 +0000
commitdf1ea3b7da4b5d72b8c44ac78bbd0c57844aa0b6 (patch)
treee0891f15c6d791d06b184fa95c6c397ab088ce5a /redhat/ospfd.init
parentf623f49e2ee435c80de4bedc75aeac12f5322bc3 (diff)
downloadquagga-df1ea3b7da4b5d72b8c44ac78bbd0c57844aa0b6.tar.bz2
quagga-df1ea3b7da4b5d72b8c44ac78bbd0c57844aa0b6.tar.xz
2003-12-30 Paul Jakma <paul@dishone.st>
* redhat/isisd.init: new file, init script for isisd. redhat/quagga.sysconfig: new file, sysconfig file for quagga initscripts. redhat/quagga.spec.in: various cleanups, including sysconfig patch from RH, fixed UID/GID as per RH EL, shell changed to /sbin/nologin, daemon vty's listen to 127.1 only per default and isisd packaged. redhat/*.init: sysconfig support and runlevels specified.
Diffstat (limited to 'redhat/ospfd.init')
-rw-r--r--redhat/ospfd.init7
1 files changed, 5 insertions, 2 deletions
diff --git a/redhat/ospfd.init b/redhat/ospfd.init
index 8e3dae61..911f7aa5 100644
--- a/redhat/ospfd.init
+++ b/redhat/ospfd.init
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# chkconfig: - 16 84
+# chkconfig: 2345 16 84
# description: An OSPF v2 routing engine for use with Zebra
#
# processname: ospfd
@@ -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
@@ -25,7 +28,7 @@ prog="ospfd"
case "$1" in
start)
echo -n $"Starting $prog: "
- daemon /usr/sbin/ospfd -d
+ daemon /usr/sbin/ospfd -d $OSPFD_OPTS
RETVAL=$?
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/ospfd
echo