diff options
author | 2010-04-23 06:29:36 +0000 | |
---|---|---|
committer | 2010-04-23 06:29:36 +0000 | |
commit | 73b494790fedfe35436af4f49feca8f4ac723cb7 (patch) | |
tree | dad621ed6433c89fce2ce5873ba1c385a27ea2ec | |
parent | remove unnecessary temp_entry variables and hoist simple check out of a loop. (diff) | |
download | wireguard-openbsd-73b494790fedfe35436af4f49feca8f4ac723cb7.tar.xz wireguard-openbsd-73b494790fedfe35436af4f49feca8f4ac723cb7.zip |
start ``aucat -l'' from /etc/rc, unless aucat_flags=NO, which is
the default setting in rc.conf.
ok deraadt
-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.335 2010/01/04 18:03:30 deraadt Exp $ +# $OpenBSD: rc,v 1.336 2010/04/23 06:29:36 ratchov Exp $ # System startup script run by init on autoboot # or after single-user. @@ -764,6 +764,10 @@ echo '.' mixerctl_conf +if [ X"${aucat_flags}" != X"NO" ]; then + aucat -l ${aucat_flags} +fi + # KerberosV master KDC if [ X"${krb5_master_kdc}" = X"YES" ]; then echo 'KerberosV master KDC' diff --git a/etc/rc.conf b/etc/rc.conf index f61ad4f8225..39fc8c318d8 100644 --- a/etc/rc.conf +++ b/etc/rc.conf @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: rc.conf,v 1.134 2009/10/17 20:40:17 nicm Exp $ +# $OpenBSD: rc.conf,v 1.135 2010/04/23 06:29:36 ratchov Exp $ # set these to "NO" to turn them off. otherwise, they're used as flags ripd_flags=NO # for normal use: "" @@ -42,6 +42,7 @@ ifstated_flags=NO # for normal use: "" relayd_flags=NO # for normal use: "" snmpd_flags=NO # for normal use: "" smtpd_flags=NO # for normal use: "" +aucat_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)) |