diff options
author | Marco Pfatschbacher <mpf@cvs.openbsd.org> | 2006-09-27 19:54:37 +0000 |
---|---|---|
committer | Marco Pfatschbacher <mpf@cvs.openbsd.org> | 2006-09-27 19:54:37 +0000 |
commit | 990a60ec14785abaa3344f2653a53d0d78ca2c4b (patch) | |
tree | 8f092398d38624c9d99583feb3cad62fb7b84335 | |
parent | 3703b32f4e77a6abf1552c657e08ecbd494068e1 (diff) |
Add ifstated(8) startup bits.
OK deraadt@, henning@, mcbride@
-rw-r--r-- | etc/rc | 6 | ||||
-rw-r--r-- | etc/rc.conf | 3 |
2 files changed, 7 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.290 2006/09/01 01:18:02 mpf Exp $ +# $OpenBSD: rc,v 1.291 2006/09/27 19:54:36 mpf Exp $ # System startup script run by init on autoboot # or after single-user. @@ -574,6 +574,10 @@ if [ X"${bgpd_flags}" != X"NO" ]; then echo -n ' bgpd'; /usr/sbin/bgpd $bgpd_flags fi +if [ X"${ifstated_flags}" != X"NO" ]; then + echo -n ' ifstated'; ifstated $ifstated_flags +fi + if [ X"${dhcpd_flags}" != X"NO" -a -f /etc/dhcpd.conf ]; then touch /var/db/dhcpd.leases if [ -f /etc/dhcpd.interfaces ]; then diff --git a/etc/rc.conf b/etc/rc.conf index 692acec2e7a..e4c589dfd76 100644 --- a/etc/rc.conf +++ b/etc/rc.conf @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: rc.conf,v 1.116 2006/06/02 21:32:50 mcbride Exp $ +# $OpenBSD: rc.conf,v 1.117 2006/09/27 19:54:36 mpf Exp $ # set these to "NO" to turn them off. otherwise, they're used as flags routed_flags=NO # for normal use: "-q" @@ -37,6 +37,7 @@ hotplugd_flags=NO # for normal use: "" watchdogd_flags=NO # for normal use: "" ftpproxy_flags=NO # for normal use: "" hostapd_flags=NO # for normal use: "" +ifstated_flags=NO # for normal use: "" # use -u to disable chroot, see httpd(8) httpd_flags=NO # for normal use: "" (or "-DSSL" after reading ssl(8)) |