Deleted Added
full compact
rc.conf (118908) rc.conf (119166)
1#!/bin/sh
2#
3
4# This is rc.conf - a file full of useful variables that you can set
5# to change the default startup behavior of your system. You should
6# not edit this file! Put any overrides into one of the ${rc_conf_files}
7# instead and you will be able to update these defaults later without
8# spamming your local configuration information.
9#
10# The ${rc_conf_files} files should only contain values which override
11# values set in this file. This eases the upgrade path when defaults
12# are changed and new features are added.
13#
14# All arguments must be in double or single quotes.
15#
1#!/bin/sh
2#
3
4# This is rc.conf - a file full of useful variables that you can set
5# to change the default startup behavior of your system. You should
6# not edit this file! Put any overrides into one of the ${rc_conf_files}
7# instead and you will be able to update these defaults later without
8# spamming your local configuration information.
9#
10# The ${rc_conf_files} files should only contain values which override
11# values set in this file. This eases the upgrade path when defaults
12# are changed and new features are added.
13#
14# All arguments must be in double or single quotes.
15#
16# $FreeBSD: head/etc/defaults/rc.conf 118908 2003-08-14 15:27:32Z harti $
16# $FreeBSD: head/etc/defaults/rc.conf 119166 2003-08-20 06:15:18Z mtm $
17
18##############################################################
19### Important initial Boot-time options ####################
20##############################################################
21
22rc_debug="NO" # Set to YES to enable debugging output from rc.d
23rc_info="YES" # Enables display of informational messages at boot.
24rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown

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

429harvest_p_to_p="YES" # Entropy device harvests point-to-point randomness
430dmesg_enable="YES" # Save dmesg(8) to /var/run/dmesg.boot
431jail_enable="NO" # Set to NO to disable starting of any jails
432jail_list="" # Space separated list of names of jails
433jail_set_hostname_allow="YES" # Allow root user in a jail to change its hostname
434jail_socket_unixiproute_only="YES" # Route only TCP/IP within a jail
435jail_sysvipc_allow="NO" # Allow SystemV IPC use from within a jail
436watchdogd_enable="NO" # Start the software watchdog daemon
17
18##############################################################
19### Important initial Boot-time options ####################
20##############################################################
21
22rc_debug="NO" # Set to YES to enable debugging output from rc.d
23rc_info="YES" # Enables display of informational messages at boot.
24rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown

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

429harvest_p_to_p="YES" # Entropy device harvests point-to-point randomness
430dmesg_enable="YES" # Save dmesg(8) to /var/run/dmesg.boot
431jail_enable="NO" # Set to NO to disable starting of any jails
432jail_list="" # Space separated list of names of jails
433jail_set_hostname_allow="YES" # Allow root user in a jail to change its hostname
434jail_socket_unixiproute_only="YES" # Route only TCP/IP within a jail
435jail_sysvipc_allow="NO" # Allow SystemV IPC use from within a jail
436watchdogd_enable="NO" # Start the software watchdog daemon
437devfs_rulesets="/etc/defaults/devfs.rules /etc/devfs.rules" # Files containing
438 # devfs(8) rules.
439devfs_system_ruleset="" # The name of a ruleset to apply to /dev
437
440
441
438##############################################################
439### Define source_rc_confs, the mechanism used by /etc/rc.* ##
440### scripts to source rc_conf_files overrides safely. ##
441##############################################################
442
443if [ -z "${source_rc_confs_defined}" ]; then
444 source_rc_confs_defined=yes
445 source_rc_confs () {

--- 15 unchanged lines hidden ---
442##############################################################
443### Define source_rc_confs, the mechanism used by /etc/rc.* ##
444### scripts to source rc_conf_files overrides safely. ##
445##############################################################
446
447if [ -z "${source_rc_confs_defined}" ]; then
448 source_rc_confs_defined=yes
449 source_rc_confs () {

--- 15 unchanged lines hidden ---