rc.conf revision 142576
1#!/bin/sh
2
3# This is rc.conf - a file full of useful variables that you can set
4# to change the default startup behavior of your system.  You should
5# not edit this file!  Put any overrides into one of the ${rc_conf_files}
6# instead and you will be able to update these defaults later without
7# spamming your local configuration information.
8#
9# The ${rc_conf_files} files should only contain values which override
10# values set in this file.  This eases the upgrade path when defaults
11# are changed and new features are added.
12#
13# All arguments must be in double or single quotes.
14#
15# For a more detailed explanation of all the rc.conf variables, please
16# refer to the rc.conf(5) manual page.
17#
18# $FreeBSD: head/etc/defaults/rc.conf 142576 2005-02-26 21:01:22Z njl $
19
20##############################################################
21###  Important initial Boot-time options  ####################
22##############################################################
23
24rc_debug="NO"		# Set to YES to enable debugging output from rc.d
25rc_info="NO"		# Enables display of informational messages at boot.
26rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown
27swapfile="NO"		# Set to name of swapfile if aux swapfile desired.
28apm_enable="NO"		# Set to YES to enable APM BIOS functions (or NO).
29apmd_enable="NO"	# Run apmd to handle APM event from userland.
30apmd_flags=""		# Flags to apmd (if enabled).
31devd_enable="YES" 	# Run devd, to trigger programs on device tree changes.
32kldxref_enable="NO"	# Build linker.hints files with kldxref(8).
33kldxref_clobber="NO"	# Overwrite old linker.hints at boot.
34kldxref_module_path=""	# Override kern.module_path. A ';'-delimited list.
35pccard_enable="NO"	# Set to YES if you want to configure PCCARD devices.
36pccard_mem="DEFAULT"	# If pccard_enable=YES, this is card memory address.
37pccard_beep="2"		# pccard beep type.
38pccard_ifconfig="NO"	# Specialized pccard ethernet configuration (or NO).
39pccardd_flags="-z"	# Additional flags for pccardd.
40pccard_conf="/etc/defaults/pccard.conf"	# pccardd(8) config file
41pccard_ether_delay="5"	# Delay before trying to start dhclient in pccard_ether
42removable_interfaces=""	# Removable network interfaces for /etc/pccard_ether.
43tmpmfs="AUTO"		# Set to YES to always create an mfs /tmp, NO to never
44tmpsize="20m"		# Size of mfs /tmp if created
45tmpmfs_flags="-S"	# Extra mdmfs options for the mfs /tmp
46varmfs="AUTO"		# Set to YES to always create an mfs /var, NO to never
47varsize="32m"		# Size of mfs /var if created
48varmfs_flags="-S"	# Extra mount options for the mfs /var
49populate_var="AUTO"	# Set to YES to always (re)populate /var, NO to never
50local_startup="/usr/local/etc/rc.d /usr/X11R6/etc/rc.d" # startup script dirs.
51script_name_sep=" "	# Change if your startup scripts' names contain spaces
52rc_conf_files="/etc/rc.conf /etc/rc.conf.local"
53
54# Experimental - test before enabling
55gbde_autoattach_all="NO" # YES automatically mounts gbde devices from fstab
56gbde_devices="NO" 	# Devices to automatically attach (list, or AUTO)
57gbde_attach_attempts="3" # Number of times to attempt attaching gbde devices
58gbde_lockdir="/etc"	# Where to look for gbde lockfiles
59gbde_swap_enable="NO"	# Set to YES to automatically initialize gbde swap
60			# devices listed in fstab with a random one-shot key
61
62root_rw_mount="YES"	# Set to NO to inhibit remounting root read-write.
63fsck_y_enable="NO"	# Set to YES to do fsck -y if the initial preen fails.
64background_fsck="YES"	# Attempt to run fsck in the background where possible.
65background_fsck_delay="60" # Time to wait (seconds) before starting the fsck.
66netfs_types="nfs:NFS nfs4:NFS4 smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
67extra_netfs_types="NO"	# List of network extra filesystem types for delayed
68			# mount at startup (or NO).
69
70##############################################################
71###  Network configuration sub-section  ######################
72##############################################################
73
74### Basic network and firewall/security options: ###
75hostname=""			# Set this!
76nisdomainname="NO"		# Set to NIS domain if using NIS (or NO).
77dhclient_program="/sbin/dhclient"	# Path to dhcp client program.
78dhclient_flags=""		# Additional flags to pass to dhcp client.
79background_dhclient="NO"	# Start dhcp client in the background.
80firewall_enable="NO"		# Set to YES to enable firewall functionality
81firewall_script="/etc/rc.firewall" # Which script to run to set up the firewall
82firewall_type="UNKNOWN"		# Firewall type (see /etc/rc.firewall)
83firewall_quiet="NO"		# Set to YES to suppress rule display
84firewall_logging="NO"		# Set to YES to enable events logging
85firewall_flags=""		# Flags passed to ipfw when type is a file
86ip_portrange_first="NO"		# Set first dynamically allocated port
87ip_portrange_last="NO"		# Set last dynamically allocated port
88ike_enable="NO"			# Enable IKE daemon (usually racoon or isakmpd)
89ike_program="/usr/local/sbin/isakmpd"	# Path to IKE daemon
90ike_flags=""			# Additional flags for IKE daemon
91ipsec_enable="NO"		# Set to YES to run setkey on ipsec_file
92ipsec_file="/etc/ipsec.conf"	# Name of config file for setkey
93natd_program="/sbin/natd"	# path to natd, if you want a different one.
94natd_enable="NO"		# Enable natd (if firewall_enable == YES).
95natd_interface=""		# Public interface or IPaddress to use.
96natd_flags=""			# Additional flags for natd.
97ipfilter_enable="NO"		# Set to YES to enable ipfilter functionality
98ipfilter_program="/sbin/ipf"	# where the ipfilter program lives
99ipfilter_rules="/etc/ipf.rules"	# rules definition file for ipfilter, see
100				# /usr/src/contrib/ipfilter/rules for examples
101ipfilter_flags=""		# additional flags for ipfilter
102ipnat_enable="NO"		# Set to YES to enable ipnat functionality
103ipnat_program="/sbin/ipnat"	# where the ipnat program lives
104ipnat_rules="/etc/ipnat.rules"	# rules definition file for ipnat
105ipnat_flags=""			# additional flags for ipnat
106ipmon_enable="NO"		# Set to YES for ipmon; needs ipfilter or ipnat
107ipmon_program="/sbin/ipmon"	# where the ipfilter monitor program lives
108ipmon_flags="-Ds"		# typically "-Ds" or "-D /var/log/ipflog"
109ipfs_enable="NO"		# Set to YES to enable saving and restoring
110				# of state tables at shutdown and boot
111ipfs_program="/sbin/ipfs"	# where the ipfs program lives
112ipfs_flags=""			# additional flags for ipfs
113pf_enable="NO"			# Set to YES to enable packet filter (pf)
114pf_rules="/etc/pf.conf"		# rules definition file for pf
115pf_program="/sbin/pfctl"	# where the pfctl program lives
116pf_flags=""			# additional flags for pfctl
117pflog_enable="NO"		# Set to YES to enable packet filter logging
118pflog_logfile="/var/log/pflog"	# where pflogd should store the logfile
119pflog_program="/sbin/pflogd"	# where the pflogd program lives
120pflog_flags=""			# additional flags for pflogd
121tcp_extensions="YES"		# Set to NO to turn off RFC1323 extensions.
122log_in_vain="0"			# >=1 to log connects to ports w/o listeners.
123tcp_keepalive="YES"		# Enable stale TCP connection timeout (or NO).
124# For the following option you need to have TCP_DROP_SYNFIN set in your
125# kernel.  Please refer to LINT and NOTES for details.
126tcp_drop_synfin="NO"		# Set to YES to drop TCP packets with SYN+FIN
127				# NOTE: this violates the TCP specification
128icmp_drop_redirect="NO" 	# Set to YES to ignore ICMP REDIRECT packets
129icmp_log_redirect="NO"		# Set to YES to log ICMP REDIRECT packets
130network_interfaces="auto"	# List of network interfaces (or "auto").
131cloned_interfaces=""		# List of cloned network interfaces to create.
132#cloned_interfaces="gif0 gif1 gif2 gif3" # Pre-cloning GENERIC config.
133ifconfig_lo0="inet 127.0.0.1"	# default loopback device configuration.
134#ifconfig_lo0_alias0="inet 127.0.0.254 netmask 0xffffffff" # Sample alias entry.
135#ifconfig_ed0_ipx="ipx 0x00010010"	# Sample IPX address family entry.
136#ifconfig_fxp0_name="net0"	# Change interface name from fxp0 to net0.
137#
138# If you have any sppp(4) interfaces above, you might also want to set
139# the following parameters.  Refer to spppcontrol(8) for their meaning.
140sppp_interfaces=""		# List of sppp interfaces.
141#sppp_interfaces="isp0"		# example: sppp over ISDN
142#spppconfig_isp0="authproto=chap myauthname=foo myauthsecret='top secret' hisauthname=some-gw hisauthsecret='another secret'"
143gif_interfaces="NO"		# List of GIF tunnels (or "NO").
144#gif_interfaces="gif0 gif1"	# Examples typically for a router.
145				# Choose correct tunnel addrs.
146#gifconfig_gif0="10.1.1.1 10.1.2.1"	# Examples typically for a router.
147#gifconfig_gif1="10.1.1.2 10.1.2.2"	# Examples typically for a router.
148
149# User ppp configuration.
150ppp_enable="NO"		# Start user-ppp (or NO).
151ppp_program="/usr/sbin/ppp"	# Path to user-ppp program.
152ppp_mode="auto"		# Choice of "auto", "ddial", "direct" or "dedicated".
153			# For details see man page for ppp(8). Default is auto.
154ppp_nat="YES"		# Use PPP's internal network address translation or NO.
155ppp_profile="papchap"	# Which profile to use from /etc/ppp/ppp.conf.
156ppp_user="root"		# Which user to run ppp as
157
158### Network daemon (miscellaneous) ###
159syslogd_enable="YES"		# Run syslog daemon (or NO).
160syslogd_program="/usr/sbin/syslogd" # path to syslogd, if you want a different one.
161syslogd_flags="-s"		# Flags to syslogd (if enabled).
162inetd_enable="NO"		# Run the network daemon dispatcher (YES/NO).
163inetd_program="/usr/sbin/inetd"	# path to inetd, if you want a different one.
164inetd_flags="-wW -C 60"		# Optional flags to inetd
165#
166# named.  It may be possible to run named in a sandbox, man security for
167# details.
168#
169named_enable="NO"		# Run named, the DNS server (or NO).
170named_program="/usr/sbin/named"	# path to named, if you want a different one.
171named_flags="-u bind" 		# Flags for named
172named_pidfile="/var/run/named/pid" # Must set this in named.conf as well
173named_chrootdir="/var/named"	# Chroot directory (or "" not to auto-chroot it)
174named_chroot_autoupdate="YES"	# Automatically install/update chrooted
175				# components of named. See /etc/rc.d/named.
176named_symlink_enable="YES"	# Symlink the chrooted pid file
177
178#
179# kerberos. Do not run the admin daemons on slave servers
180#
181kerberos5_server_enable="NO"	# Run a kerberos 5 master server (or NO).
182kerberos5_server="/usr/libexec/kdc"	# path to kerberos 5 KDC
183kadmind5_server_enable="NO"	# Run kadmind (or NO)
184kadmind5_server="/usr/libexec/kadmind"	# path to kerberos 5 admin daemon
185kpasswdd_server_enable="NO"	# Run kpasswdd (or NO)
186kpasswdd_server="/usr/libexec/kpasswdd"	# path to kerberos 5 passwd daemon
187
188rwhod_enable="NO"		# Run the rwho daemon (or NO).
189rwhod_flags=""			# Flags for rwhod
190rarpd_enable="NO"		# Run rarpd (or NO).
191rarpd_flags=""			# Flags to rarpd.
192bootparamd_enable="NO"		# Run bootparamd (or NO).
193bootparamd_flags=""		# Flags to bootparamd
194pppoed_enable="NO"		# Run the PPP over Ethernet daemon.
195pppoed_provider="*"		# Provider and ppp(8) config file entry.
196pppoed_flags="-P /var/run/pppoed.pid"	# Flags to pppoed (if enabled).
197pppoed_interface="fxp0"		# The interface that pppoed runs on.
198sshd_enable="NO"		# Enable sshd
199sshd_program="/usr/sbin/sshd"	# path to sshd, if you want a different one.
200sshd_flags=""			# Additional flags for sshd.
201
202### Network daemon (NFS): All need rpcbind_enable="YES" ###
203amd_enable="NO"			# Run amd service with $amd_flags (or NO).
204amd_flags="-a /.amd_mnt -l syslog /host /etc/amd.map /net /etc/amd.map"
205amd_map_program="NO"		# Can be set to "ypcat -k amd.master"
206nfs_client_enable="NO"		# This host is an NFS client (or NO).
207nfs_access_cache="2"		# Client cache timeout in seconds
208nfs_server_enable="NO"		# This host is an NFS server (or NO).
209nfs_server_flags="-u -t -n 4"	# Flags to nfsd (if enabled).
210mountd_enable="NO"		# Run mountd (or NO).
211mountd_flags="-r"		# Flags to mountd (if NFS server enabled).
212weak_mountd_authentication="NO"	# Allow non-root mount requests to be served.
213nfs_reserved_port_only="NO"	# Provide NFS only on secure port (or NO).
214nfs_bufpackets=""		# bufspace (in packets) for client
215rpc_lockd_enable="NO"		# Run NFS rpc.lockd needed for client/server.
216rpc_statd_enable="NO"		# Run NFS rpc.statd needed for client/server.
217rpcbind_enable="NO"		# Run the portmapper service (YES/NO).
218rpcbind_program="/usr/sbin/rpcbind"	# path to rpcbind, if you want a different one.
219rpcbind_flags=""		# Flags to rpcbind (if enabled).
220rpc_ypupdated_enable="NO"	# Run if NIS master and SecureRPC (or NO).
221keyserv_enable="NO"		# Run the SecureRPC keyserver (or NO).
222keyserv_flags=""		# Flags to keyserv (if enabled).
223
224### Network Time Services options: ###
225timed_enable="NO"		# Run the time daemon (or NO).
226timed_flags=""			# Flags to timed (if enabled).
227ntpdate_enable="NO"		# Run ntpdate to sync time on boot (or NO).
228ntpdate_program="/usr/sbin/ntpdate"	# path to ntpdate, if you want a different one.
229ntpdate_flags="-b"		# Flags to ntpdate (if enabled).
230ntpd_enable="NO"		# Run ntpd Network Time Protocol (or NO).
231ntpd_program="/usr/sbin/ntpd"	# path to ntpd, if you want a different one.
232ntpd_sync_on_start="NO"		# Sync time on ntpd startup, even if offset is high
233ntpd_flags="-p /var/run/ntpd.pid -f /var/db/ntpd.drift"
234				# Flags to ntpd (if enabled).
235
236# Network Information Services (NIS) options: All need rpcbind_enable="YES" ###
237nis_client_enable="NO"		# We're an NIS client (or NO).
238nis_client_flags=""		# Flags to ypbind (if enabled).
239nis_ypset_enable="NO"		# Run ypset at boot time (or NO).
240nis_ypset_flags=""		# Flags to ypset (if enabled).
241nis_server_enable="NO"		# We're an NIS server (or NO).
242nis_server_flags=""		# Flags to ypserv (if enabled).
243nis_ypxfrd_enable="NO"		# Run rpc.ypxfrd at boot time (or NO).
244nis_ypxfrd_flags=""		# Flags to rpc.ypxfrd (if enabled).
245nis_yppasswdd_enable="NO"	# Run rpc.yppasswdd at boot time (or NO).
246nis_yppasswdd_flags=""		# Flags to rpc.yppasswdd (if enabled).
247
248### Network routing options: ###
249defaultrouter="NO"		# Set to default gateway (or NO).
250static_routes=""		# Set to static route list (or leave empty).
251natm_static_routes=""		# Set to static route list for NATM (or leave empty).
252gateway_enable="NO"		# Set to YES if this host will be a gateway.
253router_enable="NO"		# Set to YES to enable a routing daemon.
254router="/sbin/routed"		# Name of routing daemon to use if enabled.
255router_flags="-q"		# Flags for routing daemon.
256mrouted_enable="NO"		# Do multicast routing (see /etc/mrouted.conf).
257mrouted_flags=""		# Flags for multicast routing daemon.
258ipxgateway_enable="NO"		# Set to YES to enable IPX routing.
259ipxrouted_enable="NO"		# Set to YES to run the IPX routing daemon.
260ipxrouted_flags=""		# Flags for IPX routing daemon.
261arpproxy_all="NO"		# replaces obsolete kernel option ARP_PROXYALL.
262forward_sourceroute="NO"	# do source routing (only if gateway_enable is set to "YES")
263accept_sourceroute="NO"		# accept source routed packets to us
264
265### ATM interface options: ###
266atm_enable="NO"			# Configure ATM interfaces (or NO).
267#atm_netif_hea0="atm 1"		# Network interfaces for physical interface.
268#atm_sigmgr_hea0="uni31"	# Signalling manager for physical interface.
269#atm_prefix_hea0="ILMI"		# NSAP prefix (UNI interfaces only) (or ILMI).
270#atm_macaddr_hea0="NO"		# Override physical MAC address (or NO).
271#atm_arpserver_atm0="0x47.0005.80.999999.9999.9999.9999.999999999999.00" # ATMARP server address (or local).
272#atm_scsparp_atm0="NO"		# Run SCSP/ATMARP on network interface (or NO).
273atm_pvcs=""			# Set to PVC list (or leave empty).
274atm_arps=""			# Set to permanent ARP list (or leave empty).
275
276### ISDN interface options: (see also: /usr/share/examples/isdn) ###
277isdn_enable="NO"		# Enable the ISDN subsystem (or NO).
278isdn_fsdev="NO"			# Output device for fullscreen mode (or NO for daemon mode).
279isdn_flags="-dn -d0x1f9"	# Flags for isdnd
280isdn_ttype="cons25"		# terminal type for fullscreen mode
281isdn_screenflags="NO"		# screenflags for ${isdn_fsdev}
282isdn_trace="NO"			# Enable the ISDN trace subsystem (or NO).
283isdn_traceflags="-f /var/tmp/isdntrace0"	# Flags for isdntrace
284
285### Miscellaneous network options: ###
286icmp_bmcastecho="NO"	# respond to broadcast ping packets
287
288### IPv6 options: ###
289ipv6_enable="NO"		# Set to YES to set up for IPv6.
290ipv6_network_interfaces="auto"	# List of network interfaces (or "auto").
291ipv6_defaultrouter="NO"		# Set to IPv6 default gateway (or NO).
292#ipv6_defaultrouter="2002:c058:6301::"	# Use this for 6to4 (RFC 3068)
293ipv6_static_routes=""		# Set to static route list (or leave empty).
294#ipv6_static_routes="xxx"	# An example to set fec0:0000:0000:0006::/64
295				#  route toward loopback interface.
296#ipv6_route_xxx="fec0:0000:0000:0006:: -prefixlen 64 ::1"
297ipv6_gateway_enable="NO"	# Set to YES if this host will be a gateway.
298ipv6_router_enable="NO"		# Set to YES to enable an IPv6 routing daemon.
299ipv6_router="/usr/sbin/route6d"	# Name of IPv6 routing daemon.
300ipv6_router_flags=""		# Flags to IPv6 routing daemon.
301#ipv6_router_flags="-l"		# Example for route6d with only IPv6 site local
302				# addrs.
303#ipv6_router_flags="-q"		# If you want to run a routing daemon on an end
304				# node, you should stop advertisement.
305#ipv6_network_interfaces="ed0 ep0"	# Examples for router
306					# or static configuration for end node.
307					# Choose correct prefix value.
308#ipv6_prefix_ed0="fec0:0000:0000:0001 fec0:0000:0000:0002"  # Examples for rtr.
309#ipv6_prefix_ep0="fec0:0000:0000:0003 fec0:0000:0000:0004"  # Examples for rtr.
310#ipv6_ifconfig_ed0="fec0:0:0:5::1 prefixlen 64"	# Sample manual assign entry
311#ipv6_ifconfig_ed0_alias0="fec0:0:0:5::2 prefixlen 64" # Sample alias entry.
312ipv6_default_interface="NO"	# Default output interface for scoped addrs.
313				# Now this works only for IPv6 link local
314				# multicast addrs.
315rtsol_flags=""			# Flags to IPv6 router solicitation.
316rtadvd_enable="NO"		# Set to YES to enable an IPv6 router
317				# advertisement daemon. If set to YES,
318				# this router becomes a possible candidate
319				# IPv6 default router for local subnets.
320rtadvd_interfaces=""		# Interfaces rtadvd sends RA packets.
321mroute6d_enable="NO"		# Do IPv6 multicast routing.
322mroute6d_program="/usr/local/sbin/pim6dd"	# Name of IPv6 multicast
323						# routing daemon.  You need to
324						# install it from package or
325						# port.
326mroute6d_flags=""		# Flags to IPv6 multicast routing daemon.
327stf_interface_ipv4addr=""	# Local IPv4 addr for 6to4 IPv6 over IPv4
328				# tunneling interface. Specify this entry
329				# to enable 6to4 interface.
330stf_interface_ipv4plen="0"	# Prefix length for 6to4 IPv4 addr,
331				# to limit peer addr range. Effective value
332				# is 0-31.
333stf_interface_ipv6_ifid="0:0:0:1"	# IPv6 interface id for stf0.
334				# If you like, you can set "AUTO" for this.
335stf_interface_ipv6_slaid="0000"	# IPv6 Site Level Aggregator for stf0
336ipv6_faith_prefix="NO"		# Set faith prefix to enable a FAITH
337				# IPv6-to-IPv4 TCP translator.  You also need
338				# faithd(8) setup.
339ipv6_ipv4mapping="NO"		# Set to "YES" to enable IPv4 mapped IPv6 addr
340				# communication. (like ::ffff:a.b.c.d)
341ipv6_firewall_enable="NO"	# Set to YES to enable IPv6 firewall
342				# functionality
343ipv6_firewall_script="/etc/rc.firewall6" # Which script to run to set up the IPv6 firewall
344ipv6_firewall_type="UNKNOWN"	# IPv6 Firewall type (see /etc/rc.firewall6)
345ipv6_firewall_quiet="NO"	# Set to YES to suppress rule display
346ipv6_firewall_logging="NO"	# Set to YES to enable events logging
347ipv6_firewall_flags=""		# Flags passed to ip6fw when type is a file
348ipv6_ipfilter_rules="/etc/ipf6.rules"	# rules definition file for ipfilter,
349					# see /usr/src/contrib/ipfilter/rules
350					# for examples
351ip6addrctl_enable="NO"	# Set to YES to enable default address selection
352ip6addrctl_verbose="NO"	# Set to YES to enable verbose configuration messages
353
354##############################################################
355###  System console options  #################################
356##############################################################
357
358keyboard=""		# keyboard device to use (default /dev/kbd0).
359keymap="NO"		# keymap in /usr/share/syscons/keymaps/* (or NO).
360keyrate="NO"		# keyboard rate to: slow, normal, fast (or NO).
361keybell="NO" 		# See kbdcontrol(1) for options.  Use "off" to disable.
362keychange="NO"		# function keys default values (or NO).
363cursor="NO"		# cursor type {normal|blink|destructive} (or NO).
364scrnmap="NO"		# screen map in /usr/share/syscons/scrnmaps/* (or NO).
365font8x16="NO"		# font 8x16 from /usr/share/syscons/fonts/* (or NO).
366font8x14="NO"		# font 8x14 from /usr/share/syscons/fonts/* (or NO).
367font8x8="NO"		# font 8x8 from /usr/share/syscons/fonts/* (or NO).
368blanktime="300"		# blank time (in seconds) or "NO" to turn it off.
369saver="NO"		# screen saver: Uses /boot/kernel/${saver}_saver.ko
370moused_nondefault_enable="YES" # Treat non-default mice as enabled unless
371			       # specifically overriden in rc.conf(5).
372moused_enable="NO"	# Run the mouse daemon.
373moused_type="auto"	# See man page for rc.conf(5) for available settings.
374moused_port="/dev/psm0"	# Set to your mouse port.
375moused_flags=""		# Any additional flags to moused.
376mousechar_start="NO"	# if 0xd0-0xd3 default range is occupied in your
377			# language code table, specify alternative range
378			# start like mousechar_start=3, see vidcontrol(1)
379allscreens_flags=""	# Set this vidcontrol mode for all virtual screens
380allscreens_kbdflags=""	# Set this kbdcontrol mode for all virtual screens
381
382
383##############################################################
384###  pcvt console driver options  ############################
385##############################################################
386
387pcvt_verbose="NO"	# set to YES to enable verbose configuration messages
388pcvt_keymap="NO"	# keyboard map in /usr/share/misc/keycap.pcvt (or NO).
389pcvt_keydel="NO"	# key repeat delay, 0-3 (250,500,750,1000 msec) (or NO).
390pcvt_keyrate="NO"	# keyboard repetition rate 31-0 (2-30 char/sec) (or NO).
391pcvt_keyrepeat="NO"	# keyboard repeat ON or OFF (or NO).
392pcvt_force24="NO"	# force a 24 line display (when 25 possible) (or NO).
393pcvt_hpext="NO"		# use HP extensions (function keys labels) (or NO).
394pcvt_lines="NO"		# lines (25, 28, 40, 50 or NO).
395pcvt_blanktime="NO"	# blank time (in seconds) (or NO).
396pcvt_cursorh="NO"	# cursor top scanline (topmost line is 0) (or NO).
397pcvt_cursorl="NO"	# cursor low scanline (bottom line is 16) (or NO).
398pcvt_monohigh="NO"	# set intensity to high on monochrome monitors (or NO).
399
400
401##############################################################
402###  Mail Transfer Agent (MTA) options  ######################
403##############################################################
404
405mta_start_script="/etc/rc.sendmail"
406			# Script to start your chosen MTA, called by /etc/rc.
407# Settings for /etc/rc.sendmail and /etc/rc.d/sendmail:
408sendmail_enable="NO"	# Run the sendmail inbound daemon (YES/NO).
409sendmail_pidfile="/var/run/sendmail.pid"	# sendmail pid file
410sendmail_procname="/usr/sbin/sendmail"		# sendmail process name
411sendmail_flags="-L sm-mta -bd -q30m" # Flags to sendmail (as a server)
412sendmail_submit_enable="YES"	# Start a localhost-only MTA for mail submission
413sendmail_submit_flags="-L sm-mta -bd -q30m -ODaemonPortOptions=Addr=localhost"
414				# Flags for localhost-only MTA
415sendmail_outbound_enable="YES"	# Dequeue stuck mail (YES/NO).
416sendmail_outbound_flags="-L sm-queue -q30m" # Flags to sendmail (outbound only)
417sendmail_msp_queue_enable="YES"	# Dequeue stuck clientmqueue mail (YES/NO).
418sendmail_msp_queue_flags="-L sm-msp-queue -Ac -q30m"
419				# Flags for sendmail_msp_queue daemon.
420
421
422##############################################################
423###  Miscellaneous administrative options  ###################
424##############################################################
425
426cron_enable="YES"	# Run the periodic job daemon.
427cron_program="/usr/sbin/cron"	# Which cron executable to run (if enabled).
428cron_dst="YES"		# Handle DST transitions intelligently (YES/NO)
429cron_flags=""		# Which options to pass to the cron daemon.
430lpd_enable="NO"		# Run the line printer daemon.
431lpd_program="/usr/sbin/lpd"	# path to lpd, if you want a different one.
432lpd_flags=""		# Flags to lpd (if enabled).
433usbd_enable="NO"	# Run the usbd daemon.
434usbd_flags=""		# Flags to usbd (if enabled).
435dumpdev="NO"		# Device name to crashdump to (or NO).
436dumpdir="/var/crash"	# Directory where crash dumps are to be stored
437savecore_flags=""	# Used if dumpdev is enabled above, and present.
438enable_quotas="NO"	# turn on quotas on startup (or NO).
439check_quotas="YES"	# Check quotas on startup (or NO).
440accounting_enable="NO"	# Turn on process accounting (or NO).
441ibcs2_enable="NO"	# Ibcs2 (SCO) emulation loaded at startup (or NO).
442ibcs2_loaders="coff"	# List of additional Ibcs2 loaders (or NO).
443sysvipc_enable="NO"	# Load System V IPC primitives at startup (or NO).
444linux_enable="NO"	# Linux binary compatibility loaded at startup (or NO).
445svr4_enable="NO"	# SysVR4 emulation loaded at startup (or NO).
446osf1_enable="NO"	# Alpha OSF/1 emulation loaded at startup (or NO).
447clear_tmp_enable="NO"	# Clear /tmp at startup.
448ldconfig_insecure="NO"	# Set to YES to disable ldconfig security checks
449ldconfig_paths="/usr/lib/compat /usr/X11R6/lib /usr/local/lib /usr/local/lib/compat/pkg"
450			# shared library search paths
451ldconfig_paths_aout="/usr/lib/compat/aout /usr/X11R6/lib/aout /usr/local/lib/aout"
452			# a.out shared library search paths
453kern_securelevel_enable="NO"	# kernel security level (see init(8)),
454kern_securelevel="-1"	# range: -1..3 ; `-1' is the most insecure
455lomac_enable="NO"	# start lomac(4) security module at boot
456update_motd="YES"	# update version info in /etc/motd (or NO)
457unaligned_print="YES"	# print unaligned access warnings on the alpha (or NO).
458entropy_file="/entropy"	# Set to NO to disable caching entropy through reboots.
459			# /var/db/entropy is preferred if / is not available.
460entropy_dir="/var/db/entropy" # Set to NO to disable caching entropy via cron.
461entropy_save_sz="2048"	# Size of the entropy cache files.
462entropy_save_num="8"	# Number of entropy cache files to save.
463harvest_interrupt="YES"	# Entropy device harvests interrupt randomness
464harvest_ethernet="YES"	# Entropy device harvests ethernet randomness
465harvest_p_to_p="YES"	# Entropy device harvests point-to-point randomness
466dmesg_enable="YES"	# Save dmesg(8) to /var/run/dmesg.boot
467watchdogd_enable="NO"	# Start the software watchdog daemon
468devfs_rulesets="/etc/defaults/devfs.rules /etc/devfs.rules" # Files containing
469							    # devfs(8) rules.
470devfs_system_ruleset=""	# The name of a ruleset to apply to /dev
471devfs_set_rulesets=""	# A list of /mount/dev=ruleset_name settings to
472			# apply (must be mounted already, i.e. fstab(5))
473performance_cx_lowest="LOW"		# Online CPU idle state
474performance_cpu_freq="NONE"		# Online CPU frequency
475economy_cx_lowest="LOW"			# Offline CPU idle state
476economy_cpu_freq="NONE"			# Offline CPU frequency
477virecover_enable="YES"	# Perform housekeeping for the vi(1) editor
478ugidfw_enable="NO"	# Load mac_bsdextended(4) rules on boot
479bsdextended_script="/etc/rc.bsdextended"	# Default mac_bsdextended(4)
480						# ruleset file.
481
482##############################################################
483### Jail Configuration #######################################
484##############################################################
485jail_enable="NO"	# Set to NO to disable starting of any jails
486jail_list=""		# Space separated list of names of jails
487jail_set_hostname_allow="YES" # Allow root user in a jail to change its hostname
488jail_socket_unixiproute_only="YES" # Route only TCP/IP within a jail
489jail_sysvipc_allow="NO"	# Allow SystemV IPC use from within a jail
490
491#
492# To use rc's built-in jail infrastructure create entries for
493# each jail, specified in jail_list, with the following variables.
494# NOTE: replace 'example' with the jail's name.
495#
496#jail_example_rootdir="/usr/jail/default"	# Jail's root directory
497#jail_example_hostname="default.domain.com"	# Jail's hostname
498#jail_example_ip="192.168.0.10"			# Jail's IP number
499#jail_example_exec_start="/bin/sh /etc/rc"		# command to execute in jail for starting
500#jail_example_exec_stop="/bin/sh /etc/rc.shutdown"	# command to execute in jail for stopping
501#jail_example_devfs_enable="NO"			# mount devfs in the jail
502#jail_example_fdescfs_enable="NO"		# mount fdescfs in the jail
503#jail_example_procfs_enable="NO"		# mount procfs in jail
504#jail_example_mount_enable="NO"			# mount/umount jail's fs
505#jail_example_devfs_ruleset="ruleset_name"	# devfs ruleset to apply to jail
506#jail_example_fstab=""				# fstab(5) for mount/umount
507
508##############################################################
509### Define source_rc_confs, the mechanism used by /etc/rc.* ##
510### scripts to source rc_conf_files overrides safely.	    ##
511##############################################################
512
513if [ -z "${source_rc_confs_defined}" ]; then
514	source_rc_confs_defined=yes
515	source_rc_confs () {
516		local i sourced_files
517		for i in ${rc_conf_files}; do
518			case ${sourced_files} in
519			*:$i:*)
520				;;
521			*)
522				sourced_files="${sourced_files}:$i:"
523				if [ -r $i ]; then
524					. $i
525				fi
526				;;
527			esac
528		done
529	}
530fi
531