Deleted Added
full compact
rc.conf (193354) rc.conf (193944)
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 193354 2009-06-02 22:15:47Z rmacklem $
18# $FreeBSD: head/etc/defaults/rc.conf 193944 2009-06-10 19:03:23Z avg $
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

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

78#geli_da1_autodetach="NO"
79#geli_mirror_home_flags="-k /etc/geli/home.keys"
80
81geli_swap_flags="-e aes -l 256 -s 4096 -d" # Options for GELI-encrypted
82 # swap partitions.
83
84root_rw_mount="YES" # Set to NO to inhibit remounting root read-write.
85fsck_y_enable="NO" # Set to YES to do fsck -y if the initial preen fails.
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

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

78#geli_da1_autodetach="NO"
79#geli_mirror_home_flags="-k /etc/geli/home.keys"
80
81geli_swap_flags="-e aes -l 256 -s 4096 -d" # Options for GELI-encrypted
82 # swap partitions.
83
84root_rw_mount="YES" # Set to NO to inhibit remounting root read-write.
85fsck_y_enable="NO" # Set to YES to do fsck -y if the initial preen fails.
86fsck_y_flags="" # Additional flags for fsck -y
86background_fsck="YES" # Attempt to run fsck in the background where possible.
87background_fsck_delay="60" # Time to wait (seconds) before starting the fsck.
88netfs_types="nfs:NFS nfs4:NFS4 smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
89extra_netfs_types="NO" # List of network extra filesystem types for delayed
90 # mount at startup (or NO).
91
92##############################################################
93### Network configuration sub-section ######################

--- 582 unchanged lines hidden ---
87background_fsck="YES" # Attempt to run fsck in the background where possible.
88background_fsck_delay="60" # Time to wait (seconds) before starting the fsck.
89netfs_types="nfs:NFS nfs4:NFS4 smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
90extra_netfs_types="NO" # List of network extra filesystem types for delayed
91 # mount at startup (or NO).
92
93##############################################################
94### Network configuration sub-section ######################

--- 582 unchanged lines hidden ---