Deleted Added
full compact
rc.conf (148765) rc.conf (149050)
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 148765 2005-08-05 23:38:51Z pjd $
18# $FreeBSD: head/etc/defaults/rc.conf 149050 2005-08-14 18:02:22Z pjd $
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

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

54rc_conf_files="/etc/rc.conf /etc/rc.conf.local"
55
56# Experimental - test before enabling
57gbde_autoattach_all="NO" # YES automatically mounts gbde devices from fstab
58gbde_devices="NO" # Devices to automatically attach (list, or AUTO)
59gbde_attach_attempts="3" # Number of times to attempt attaching gbde devices
60gbde_lockdir="/etc" # Where to look for gbde lockfiles
61
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

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

54rc_conf_files="/etc/rc.conf /etc/rc.conf.local"
55
56# Experimental - test before enabling
57gbde_autoattach_all="NO" # YES automatically mounts gbde devices from fstab
58gbde_devices="NO" # Devices to automatically attach (list, or AUTO)
59gbde_attach_attempts="3" # Number of times to attempt attaching gbde devices
60gbde_lockdir="/etc" # Where to look for gbde lockfiles
61
62geli_swap_flags="-a aes -l 256 -s 4096 -d" # Options for GELI-encrypted swap partitions.
62# GELI disk encryption configuration.
63geli_devices="" # List of devices to automatically attach in addition to
64 # GELI devices listed in /etc/fstab.
65geli_tries="" # Number of times to attempt attaching geli device.
66 # If empty, kern.geom.eli.tries will be used.
67geli_default_flags="" # Default flags for geli(8).
68geli_autodetach="YES" # Automatically detach on last close.
69 # Providers are marked as such when all file systems are
70 # mounted.
71# Example use.
72#geli_devices="da1 mirror/home"
73#geli_da1_flags="-p -k /etc/geli/da1.keys"
74#geli_da1_autodetach="NO"
75#geli_mirror_home_flags="-k /etc/geli/home.keys"
63
76
77geli_swap_flags="-a aes -l 256 -s 4096 -d" # Options for GELI-encrypted
78 # swap partitions.
79
64root_rw_mount="YES" # Set to NO to inhibit remounting root read-write.
65fsck_y_enable="NO" # Set to YES to do fsck -y if the initial preen fails.
66background_fsck="YES" # Attempt to run fsck in the background where possible.
67background_fsck_delay="60" # Time to wait (seconds) before starting the fsck.
68netfs_types="nfs:NFS nfs4:NFS4 smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
69extra_netfs_types="NO" # List of network extra filesystem types for delayed
70 # mount at startup (or NO).
71

--- 474 unchanged lines hidden ---
80root_rw_mount="YES" # Set to NO to inhibit remounting root read-write.
81fsck_y_enable="NO" # Set to YES to do fsck -y if the initial preen fails.
82background_fsck="YES" # Attempt to run fsck in the background where possible.
83background_fsck_delay="60" # Time to wait (seconds) before starting the fsck.
84netfs_types="nfs:NFS nfs4:NFS4 smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
85extra_netfs_types="NO" # List of network extra filesystem types for delayed
86 # mount at startup (or NO).
87

--- 474 unchanged lines hidden ---