Browse Source

add ospfd, ok theo

From: Jason Crawford <jasonrcrawford@gmail.com>, whitespace fixes me
OPENBSD_3_8
henning 19 years ago
parent
commit
e381312b15
2 changed files with 7 additions and 2 deletions
  1. +5
    -1
      src/etc/rc
  2. +2
    -1
      src/etc/rc.conf

+ 5
- 1
src/etc/rc View File

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.261 2005/01/19 20:52:29 millert Exp $
# $OpenBSD: rc,v 1.262 2005/03/22 22:24:38 henning Exp $
# System startup script run by init on autoboot
# or after single-user.
@ -496,6 +496,10 @@ if [ "X${mrouted_flags}" != X"NO" ]; then
echo -n ' mrouted'; mrouted $mrouted_flags
fi
if [ "X${ospfd_flags}" != X"NO" ]; then
echo -n ' ospfd'; /usr/sbin/ospfd $ospfd_flags
fi
if [ "X${bgpd_flags}" != X"NO" ]; then
echo -n ' bgpd'; /usr/sbin/bgpd $bgpd_flags
fi


+ 2
- 1
src/etc/rc.conf View File

@ -1,11 +1,12 @@
#!/bin/sh -
#
# $OpenBSD: rc.conf,v 1.104 2004/11/03 18:04:47 henning Exp $
# $OpenBSD: rc.conf,v 1.105 2005/03/22 22:24:38 henning Exp $
# set these to "NO" to turn them off. otherwise, they're used as flags
routed_flags=NO # for normal use: "-q"
mrouted_flags=NO # for normal use: "", if activated
# be sure to enable multicast_router below.
ospfd_flags=NO # for normal use: ""
bgpd_flags=NO # for normal use: ""
rarpd_flags=NO # for normal use: "-a"
bootparamd_flags=NO # for normal use: ""


Loading…
Cancel
Save