Deleted Added
full compact
rc.conf (251660) rc.conf (252310)
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 251660 2013-06-12 16:44:17Z crees $
18# $FreeBSD: head/etc/defaults/rc.conf 252310 2013-06-27 18:28:45Z hrs $
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.
26rc_startmsgs="YES" # Show "Starting foo:" messages at boot
27rcshutdown_timeout="90" # Seconds to wait before terminating rc.shutdown
28early_late_divider="FILESYSTEMS" # Script that separates early/late
29 # stages of the boot process. Make sure you know
30 # the ramifications if you change this.
31 # See rc.conf(5) for more details.
32always_force_depends="NO" # Set to check that indicated dependencies are
33 # running during boot (can increase boot time).
34
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.
26rc_startmsgs="YES" # Show "Starting foo:" messages at boot
27rcshutdown_timeout="90" # Seconds to wait before terminating rc.shutdown
28early_late_divider="FILESYSTEMS" # Script that separates early/late
29 # stages of the boot process. Make sure you know
30 # the ramifications if you change this.
31 # See rc.conf(5) for more details.
32always_force_depends="NO" # Set to check that indicated dependencies are
33 # running during boot (can increase boot time).
34
35swapfile="NO" # Set to name of swapfile if aux swapfile desired.
36swapfile_mdunit="99" # Swapfile md(4) unit number created by mdconfig(8).
37apm_enable="NO" # Set to YES to enable APM BIOS functions (or NO).
38apmd_enable="NO" # Run apmd to handle APM event from userland.
39apmd_flags="" # Flags to apmd (if enabled).
40ddb_enable="NO" # Set to YES to load ddb scripts at boot.
41ddb_config="/etc/ddb.conf" # ddb(8) config file.
42devd_enable="YES" # Run devd, to trigger programs on device tree changes.
43devd_flags="" # Additional flags for devd(8).
44#kld_list="" # Kernel modules to load after local disks are mounted

--- 35 unchanged lines hidden (view full) ---

80 # Providers are marked as such when all file systems are
81 # mounted.
82# Example use.
83#geli_devices="da1 mirror/home"
84#geli_da1_flags="-p -k /etc/geli/da1.keys"
85#geli_da1_autodetach="NO"
86#geli_mirror_home_flags="-k /etc/geli/home.keys"
87
35apm_enable="NO" # Set to YES to enable APM BIOS functions (or NO).
36apmd_enable="NO" # Run apmd to handle APM event from userland.
37apmd_flags="" # Flags to apmd (if enabled).
38ddb_enable="NO" # Set to YES to load ddb scripts at boot.
39ddb_config="/etc/ddb.conf" # ddb(8) config file.
40devd_enable="YES" # Run devd, to trigger programs on device tree changes.
41devd_flags="" # Additional flags for devd(8).
42#kld_list="" # Kernel modules to load after local disks are mounted

--- 35 unchanged lines hidden (view full) ---

78 # Providers are marked as such when all file systems are
79 # mounted.
80# Example use.
81#geli_devices="da1 mirror/home"
82#geli_da1_flags="-p -k /etc/geli/da1.keys"
83#geli_da1_autodetach="NO"
84#geli_mirror_home_flags="-k /etc/geli/home.keys"
85
88geli_swap_flags="-e aes -l 256 -s 4096 -d" # Options for GELI-encrypted
89 # swap partitions.
90
91root_rw_mount="YES" # Set to NO to inhibit remounting root read-write.
92fsck_y_enable="NO" # Set to YES to do fsck -y if the initial preen fails.
93fsck_y_flags="" # Additional flags for fsck -y
94background_fsck="YES" # Attempt to run fsck in the background where possible.
95background_fsck_delay="60" # Time to wait (seconds) before starting the fsck.
96netfs_types="nfs:NFS oldnfs:OLDNFS" # Net filesystems.
97extra_netfs_types="NO" # List of network extra filesystem types for delayed
98 # mount at startup (or NO).

--- 640 unchanged lines hidden ---
86root_rw_mount="YES" # Set to NO to inhibit remounting root read-write.
87fsck_y_enable="NO" # Set to YES to do fsck -y if the initial preen fails.
88fsck_y_flags="" # Additional flags for fsck -y
89background_fsck="YES" # Attempt to run fsck in the background where possible.
90background_fsck_delay="60" # Time to wait (seconds) before starting the fsck.
91netfs_types="nfs:NFS oldnfs:OLDNFS" # Net filesystems.
92extra_netfs_types="NO" # List of network extra filesystem types for delayed
93 # mount at startup (or NO).

--- 640 unchanged lines hidden ---