Deleted Added
full compact
rc.conf (271688) rc.conf (271696)
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 271688 2014-09-16 20:02:16Z sbruno $
18# $FreeBSD: head/etc/defaults/rc.conf 271696 2014-09-17 02:32:22Z delphij $
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

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

679
680##############################################################
681### Jail Configuration (see rc.conf(5) manual page) ##########
682##############################################################
683jail_enable="NO" # Set to NO to disable starting of any jails
684jail_parallel_start="NO" # Start jails in the background
685jail_list="" # Space separated list of names of jails
686
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

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

679
680##############################################################
681### Jail Configuration (see rc.conf(5) manual page) ##########
682##############################################################
683jail_enable="NO" # Set to NO to disable starting of any jails
684jail_parallel_start="NO" # Start jails in the background
685jail_list="" # Space separated list of names of jails
686
687hv_kvpd_enable="NO" # Start the Hyper-V key-value Pair Driver hv_kvp(4)
688
689##############################################################
690### Define source_rc_confs, the mechanism used by /etc/rc.* ##
691### scripts to source rc_conf_files overrides safely. ##
692##############################################################
693
694if [ -z "${source_rc_confs_defined}" ]; then
695 source_rc_confs_defined=yes
696 source_rc_confs() {

--- 15 unchanged lines hidden ---
687##############################################################
688### Define source_rc_confs, the mechanism used by /etc/rc.* ##
689### scripts to source rc_conf_files overrides safely. ##
690##############################################################
691
692if [ -z "${source_rc_confs_defined}" ]; then
693 source_rc_confs_defined=yes
694 source_rc_confs() {

--- 15 unchanged lines hidden ---