|
|
@ -1,6 +1,6 @@ |
|
|
|
#!/bin/sh - |
|
|
|
# |
|
|
|
# $OpenBSD: rc.conf,v 1.153 2011/07/08 18:01:31 ajacoutot Exp $ |
|
|
|
# $OpenBSD: rc.conf,v 1.154 2011/07/08 21:42:52 robert Exp $ |
|
|
|
|
|
|
|
# set these to "NO" to turn them off. otherwise, they're used as flags |
|
|
|
ldpd_flags=NO # for normal use: "" |
|
|
@ -53,7 +53,7 @@ kdc_flags=NO # for normal use: "" see 'info heimdal' for help |
|
|
|
kadmind_flags=NO # for normal use: "" |
|
|
|
kpasswdd_flags=NO # for normal use: "" |
|
|
|
btd_flags=NO # for normal use: "" |
|
|
|
amd_flags=NO |
|
|
|
amd_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)) |
|
|
@ -127,6 +127,12 @@ if [ X"${spamd_flags}" = X"NO" -o X"${spamd_black}" != X"NO" ]; then |
|
|
|
spamlogd_flags=NO |
|
|
|
fi |
|
|
|
|
|
|
|
# special care needed for pflogd to avoid starting it up and failing |
|
|
|
# if pf is not enabled |
|
|
|
if [ X"${PF}" = X"NO" ]; then |
|
|
|
pflogd_flags=NO |
|
|
|
fi |
|
|
|
|
|
|
|
# backward compatibility |
|
|
|
: ${inetd_flags=$([ X"${inetd-YES}" = XYES ] || echo NO)} |
|
|
|
: ${rwhod_flags=$([ X"${rwhod-NO}" = XYES ] || echo NO)} |
|
|
|