Deleted Added
full compact
rc.conf (279463) rc.conf (281691)
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 279463 2015-03-01 00:58:23Z rstone $
18# $FreeBSD: head/etc/defaults/rc.conf 281691 2015-04-18 16:08:06Z trasz $
19
20##############################################################
21### Important initial Boot-time options ####################
22##############################################################
23
24#rc_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

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

83#geli_da1_autodetach="NO"
84#geli_mirror_home_flags="-k /etc/geli/home.keys"
85
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.
19
20##############################################################
21### Important initial Boot-time options ####################
22##############################################################
23
24#rc_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

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

83#geli_da1_autodetach="NO"
84#geli_mirror_home_flags="-k /etc/geli/home.keys"
85
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 smbfs:SMB" # Net filesystems.
91netfs_types="nfs:NFS smbfs:SMB" # Net filesystems.
92extra_netfs_types="NO" # List of network extra filesystem types for delayed
93 # mount at startup (or NO).
94
95##############################################################
96### Network configuration sub-section ######################
97##############################################################
98
99### Basic network and firewall/security options: ###

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

319amd_map_program="NO" # Can be set to "ypcat -k amd.master"
320autofs_enable="NO" # Run autofs daemons.
321automount_flags="" # Flags to automount(8) (if autofs enabled).
322automountd_flags="" # Flags to automountd(8) (if autofs enabled).
323autounmountd_flags="" # Flags to autounmountd(8) (if autofs enabled).
324nfs_client_enable="NO" # This host is an NFS client (or NO).
325nfs_access_cache="60" # Client cache timeout in seconds
326nfs_server_enable="NO" # This host is an NFS server (or NO).
92extra_netfs_types="NO" # List of network extra filesystem types for delayed
93 # mount at startup (or NO).
94
95##############################################################
96### Network configuration sub-section ######################
97##############################################################
98
99### Basic network and firewall/security options: ###

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

319amd_map_program="NO" # Can be set to "ypcat -k amd.master"
320autofs_enable="NO" # Run autofs daemons.
321automount_flags="" # Flags to automount(8) (if autofs enabled).
322automountd_flags="" # Flags to automountd(8) (if autofs enabled).
323autounmountd_flags="" # Flags to autounmountd(8) (if autofs enabled).
324nfs_client_enable="NO" # This host is an NFS client (or NO).
325nfs_access_cache="60" # Client cache timeout in seconds
326nfs_server_enable="NO" # This host is an NFS server (or NO).
327oldnfs_server_enable="NO" # Run the old NFS server (YES/NO).
328nfs_server_flags="-u -t" # Flags to nfsd (if enabled).
329mountd_enable="NO" # Run mountd (or NO).
330mountd_flags="-r" # Flags to mountd (if NFS server enabled).
331weak_mountd_authentication="NO" # Allow non-root mount requests to be served.
332nfs_reserved_port_only="NO" # Provide NFS only on secure port (or NO).
333nfs_bufpackets="" # bufspace (in packets) for client
334rpc_lockd_enable="NO" # Run NFS rpc.lockd needed for client/server.
335rpc_lockd_flags="" # Flags to rpc.lockd (if enabled).

--- 366 unchanged lines hidden ---
327nfs_server_flags="-u -t" # Flags to nfsd (if enabled).
328mountd_enable="NO" # Run mountd (or NO).
329mountd_flags="-r" # Flags to mountd (if NFS server enabled).
330weak_mountd_authentication="NO" # Allow non-root mount requests to be served.
331nfs_reserved_port_only="NO" # Provide NFS only on secure port (or NO).
332nfs_bufpackets="" # bufspace (in packets) for client
333rpc_lockd_enable="NO" # Run NFS rpc.lockd needed for client/server.
334rpc_lockd_flags="" # Flags to rpc.lockd (if enabled).

--- 366 unchanged lines hidden ---