rc.conf revision 1.94
1#!/bin/sh -
2#
3#	$OpenBSD: rc.conf,v 1.94 2004/02/26 07:33:08 beck Exp $
4
5# set these to "NO" to turn them off.  otherwise, they're used as flags
6routed_flags=NO		# for normal use: "-q"
7mrouted_flags=NO	# for normal use: "", if activated
8			# be sure to enable multicast_router below.
9rarpd_flags=NO		# for normal use: "-a"
10bootparamd_flags=NO	# for normal use: ""
11rbootd_flags=NO		# for normal use: ""
12sshd_flags=""		# for normal use: ""
13named_flags=NO		# for normal use: ""
14rdate_flags=NO		# for normal use: [RFC868-host] or [-n RFC1361-host]
15timed_flags=NO		# for normal use: ""
16ntpdate_flags=NO	# for normal use: NTP server; run before ntpd starts
17isakmpd_flags=NO	# for normal use: ""
18mopd_flags=NO		# for normal use: "-a"
19apmd_flags=NO		# for normal use: ""
20dhcpd_flags=NO		# for normal use: "-q"
21rtadvd_flags=NO		# for normal use: list of interfaces
22			# be sure to set net.inet6.ip6.forwarding=1
23route6d_flags=NO	# for normal use: ""
24			# be sure to set net.inet6.ip6.forwarding=1
25rtsold_flags=NO		# for normal use: interface
26			# be sure to set net.inet6.ip6.forwarding=0
27			# be sure to set net.inet6.ip6.accept_rtadv=1
28lpd_flags=NO		# for normal use: "" (or "-l" for debugging)
29sensorsd_flags=NO	# for normal use: ""
30
31# use -u to disable chroot, see httpd(8)
32httpd_flags=NO		# for normal use: "" (or "-DSSL" after reading ssl(8))
33
34# For normal use: "-L sm-mta -bd -q30m", and note there is a cron job
35sendmail_flags="-L sm-mta -C/etc/mail/localhost.cf -bd -q30m"
36spamd_flags=NO		# for normal use: "" and see spamd-setup(8)
37spamd_grey=NO		# use spamd greylisting if YES
38
39# Set to NO if ftpd is running out of inetd
40ftpd_flags=NO		# for non-inetd use: "-D"
41
42# Set to NO if identd is running out of inetd
43identd_flags=NO		# for non-inetd use: "-b -elo"
44
45# On some architectures, you must also disable console getty in /etc/ttys
46xdm_flags=NO		# for normal use: ""
47
48# For enabling console mouse support (i386 and alpha only)
49wsmoused_flags=NO	# for ps/2 or usb mice: "", serial: "-p /dev/cua00"
50
51# set the following to "YES" to turn them on
52rwhod=NO
53nfs_server=NO		# see sysctl.conf for nfs client configuration
54lockd=NO
55amd=NO
56pf=NO			# Packet filter / NAT
57portmap=NO		# Note: inetd(8) rpc services need portmap too
58inetd=YES		# almost always needed
59check_quotas=YES	# NO may be desirable in some YP environments
60ntpd=YES		# run ntpd if it exists
61
62krb5_master_kdc=NO	# KerberosV master KDC. Run 'info heimdal' for help.
63krb5_slave_kdc=NO	# KerberosV slave KDC.
64afs=NO			# mount and run afs
65
66# Multicast routing configuration
67# Please look at netstart(8) for a detailed description if you change these
68multicast_host=NO	# Route all multicast packets to a single interface
69multicast_router=NO	# A multicast routing daemon will be run, e.g. mrouted
70
71# miscellaneous other flags
72# only used if the appropriate server is marked YES above
73savecore_flags=			# "-z" to compress
74ypserv_flags=			# E.g. -1 for YP v1, -d for DNS etc
75yppasswdd_flags=NO		# "-d /etc/yp" if passwd files are in /etc/yp
76nfsd_flags="-tun 4"		# Crank the 4 for a busy NFS fileserver
77amd_dir=/tmp_mnt		# AMD's mount directory
78amd_master=/etc/amd/master	# AMD 'master' map
79syslogd_flags=			# add more flags, ie. "-u -a /chroot/dev/log"
80pf_rules=/etc/pf.conf		# Packet filter rules file
81pflogd_flags=			# add more flags, ie. "-s 256"
82afsd_flags=			# Flags passed to afsd
83shlib_dirs=			# extra directories for ldconfig, separated
84				# by space
85
86local_rcconf="/etc/rc.conf.local"
87
88[ -f ${local_rcconf} ] && . ${local_rcconf} # Do not edit this line
89