Deleted Added
full compact
rc.conf (179315) rc.conf (179872)
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 179315 2008-05-26 10:40:09Z bz $
18# $FreeBSD: head/etc/defaults/rc.conf 179872 2008-06-19 07:06:11Z mtm $
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

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

523lpd_program="/usr/sbin/lpd" # path to lpd, if you want a different one.
524lpd_flags="" # Flags to lpd (if enabled).
525nscd_enable="NO" # Run the nsswitch caching daemon.
526chkprintcap_enable="NO" # Run chkprintcap(8) before running lpd.
527chkprintcap_flags="-d" # Create missing directories by default.
528dumpdev="AUTO" # Device to crashdump to (device name, AUTO, or NO).
529dumpdir="/var/crash" # Directory where crash dumps are to be stored
530savecore_flags="" # Used if dumpdev is enabled above, and present.
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

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

523lpd_program="/usr/sbin/lpd" # path to lpd, if you want a different one.
524lpd_flags="" # Flags to lpd (if enabled).
525nscd_enable="NO" # Run the nsswitch caching daemon.
526chkprintcap_enable="NO" # Run chkprintcap(8) before running lpd.
527chkprintcap_flags="-d" # Create missing directories by default.
528dumpdev="AUTO" # Device to crashdump to (device name, AUTO, or NO).
529dumpdir="/var/crash" # Directory where crash dumps are to be stored
530savecore_flags="" # Used if dumpdev is enabled above, and present.
531enable_quotas="NO" # turn on quotas on startup (or NO).
531quota_enable="NO" # turn on quotas on startup (or NO).
532check_quotas="YES" # Check quotas on startup (or NO).
533quotaon_flags="-a" # Turn quotas on for all file systems (if enabled)
534quotaoff_flags="-a" # Turn quotas off for all file systems at shutdown
535quotacheck_flags="-a" # Check all file system quotas (if enabled)
536accounting_enable="NO" # Turn on process accounting (or NO).
537ibcs2_enable="NO" # Ibcs2 (SCO) emulation loaded at startup (or NO).
538ibcs2_loaders="coff" # List of additional Ibcs2 loaders (or NO).
539

--- 108 unchanged lines hidden ---
532check_quotas="YES" # Check quotas on startup (or NO).
533quotaon_flags="-a" # Turn quotas on for all file systems (if enabled)
534quotaoff_flags="-a" # Turn quotas off for all file systems at shutdown
535quotacheck_flags="-a" # Check all file system quotas (if enabled)
536accounting_enable="NO" # Turn on process accounting (or NO).
537ibcs2_enable="NO" # Ibcs2 (SCO) emulation loaded at startup (or NO).
538ibcs2_loaders="coff" # List of additional Ibcs2 loaders (or NO).
539

--- 108 unchanged lines hidden ---