summaryrefslogtreecommitdiff
path: root/redhat/ospf6d.init
diff options
context:
space:
mode:
authorpaul <paul>2003-12-30 11:16:21 +0000
committerpaul <paul>2003-12-30 11:16:21 +0000
commit15d74e93405f0f9bb9e399163b8e53bb589699d6 (patch)
treee8a191b889d087eac50c6d33d72b182299a807a2 /redhat/ospf6d.init
parent41ad87809198dfb2cfc769d77592afaf41a2f8f0 (diff)
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/ospf6d.init')
-rw-r--r--redhat/ospf6d.init7
1 files changed, 5 insertions, 2 deletions
diff --git a/redhat/ospf6d.init b/redhat/ospf6d.init
index a54a57e6..c84ce678 100644
--- a/redhat/ospf6d.init
+++ b/redhat/ospf6d.init
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# chkconfig: - 16 84
+# chkconfig: 2345 16 84
# description: An OSPF routing engine for use with Zebra and IPv6
#
# processname: ospf6d
@@ -12,6 +12,9 @@
# Get network config
. /etc/sysconfig/network
+# quagga command line options
+. /etc/sysconfig/quagga
+
# Check that networking is up.
[ "${NETWORKING_IPV6}" = "no" ] && exit 0
@@ -24,7 +27,7 @@ prog="ospf6d"
case "$1" in
start)
echo -n $"Starting $prog: "
- daemon /usr/sbin/ospf6d -d
+ daemon /usr/sbin/ospf6d -d $OSPF6D_OPTS
RETVAL=$?
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/ospf6d
echo