Deleted Added
full compact
rc.conf (175722) rc.conf (176835)
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#
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 175722 2008-01-27 15:15:12Z mtm $
18# $FreeBSD: head/etc/defaults/rc.conf 176835 2008-03-05 18:32:58Z brooks $
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
27early_late_divider="FILESYSTEMS" # Script that separates early/late
28 # stages of the boot process. Make sure you know
29 # the ramifications if you change this.
30 # See rc.conf(5) for more details.
31
32swapfile="NO" # Set to name of swapfile if aux swapfile desired.
33apm_enable="NO" # Set to YES to enable APM BIOS functions (or NO).
34apmd_enable="NO" # Run apmd to handle APM event from userland.
35apmd_flags="" # Flags to apmd (if enabled).
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
27early_late_divider="FILESYSTEMS" # Script that separates early/late
28 # stages of the boot process. Make sure you know
29 # the ramifications if you change this.
30 # See rc.conf(5) for more details.
31
32swapfile="NO" # Set to name of swapfile if aux swapfile desired.
33apm_enable="NO" # Set to YES to enable APM BIOS functions (or NO).
34apmd_enable="NO" # Run apmd to handle APM event from userland.
35apmd_flags="" # Flags to apmd (if enabled).
36ddb_enable="NO" # Set to YES to load ddb scripts at boot.
37ddb_config="/etc/ddb.conf" # ddb(8) config file.
36devd_enable="YES" # Run devd, to trigger programs on device tree changes.
37devd_flags="" # Additional flags for devd(8).
38kldxref_enable="NO" # Build linker.hints files with kldxref(8).
39kldxref_clobber="NO" # Overwrite old linker.hints at boot.
40kldxref_module_path="" # Override kern.module_path. A ';'-delimited list.
41powerd_enable="NO" # Run powerd to lower our power usage.
42powerd_flags="" # Flags to powerd (if enabled).
43tmpmfs="AUTO" # Set to YES to always create an mfs /tmp, NO to never

--- 592 unchanged lines hidden ---
38devd_enable="YES" # Run devd, to trigger programs on device tree changes.
39devd_flags="" # Additional flags for devd(8).
40kldxref_enable="NO" # Build linker.hints files with kldxref(8).
41kldxref_clobber="NO" # Overwrite old linker.hints at boot.
42kldxref_module_path="" # Override kern.module_path. A ';'-delimited list.
43powerd_enable="NO" # Run powerd to lower our power usage.
44powerd_flags="" # Flags to powerd (if enabled).
45tmpmfs="AUTO" # Set to YES to always create an mfs /tmp, NO to never

--- 592 unchanged lines hidden ---