Deleted Added
full compact
rc.conf (149401) rc.conf (149421)
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 149401 2005-08-24 01:23:49Z brooks $
18# $FreeBSD: head/etc/defaults/rc.conf 149421 2005-08-24 16:25:47Z yar $
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

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

38pccard_ifconfig="NO" # Specialized pccard ethernet configuration (or NO).
39pccardd_flags="-z" # Additional flags for pccardd.
40pccard_conf="/etc/defaults/pccard.conf" # pccardd(8) config file
41powerd_enable="NO" # Run powerd to lower our power usage.
42powerd_flags="" # Flags to powerd (if enabled).
43removable_route_flush="YES" # Flush routes when removing an interface
44tmpmfs="AUTO" # Set to YES to always create an mfs /tmp, NO to never
45tmpsize="20m" # Size of mfs /tmp if created
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

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

38pccard_ifconfig="NO" # Specialized pccard ethernet configuration (or NO).
39pccardd_flags="-z" # Additional flags for pccardd.
40pccard_conf="/etc/defaults/pccard.conf" # pccardd(8) config file
41powerd_enable="NO" # Run powerd to lower our power usage.
42powerd_flags="" # Flags to powerd (if enabled).
43removable_route_flush="YES" # Flush routes when removing an interface
44tmpmfs="AUTO" # Set to YES to always create an mfs /tmp, NO to never
45tmpsize="20m" # Size of mfs /tmp if created
46tmpmfs_flags="-S" # Extra mdmfs options for the mfs /tmp
46tmpmfs_flags="-S -M" # Extra mdmfs options for the mfs /tmp
47varmfs="AUTO" # Set to YES to always create an mfs /var, NO to never
48varsize="32m" # Size of mfs /var if created
47varmfs="AUTO" # Set to YES to always create an mfs /var, NO to never
48varsize="32m" # Size of mfs /var if created
49varmfs_flags="-S" # Extra mount options for the mfs /var
49varmfs_flags="-S -M" # Extra mount options for the mfs /var
50populate_var="AUTO" # Set to YES to always (re)populate /var, NO to never
51local_startup="/usr/local/etc/rc.d /usr/X11R6/etc/rc.d" # startup script dirs.
52script_name_sep=" " # Change if your startup scripts' names contain spaces
53rc_conf_files="/etc/rc.conf /etc/rc.conf.local"
54
55# Experimental - test before enabling
56gbde_autoattach_all="NO" # YES automatically mounts gbde devices from fstab
57gbde_devices="NO" # Devices to automatically attach (list, or AUTO)

--- 503 unchanged lines hidden ---
50populate_var="AUTO" # Set to YES to always (re)populate /var, NO to never
51local_startup="/usr/local/etc/rc.d /usr/X11R6/etc/rc.d" # startup script dirs.
52script_name_sep=" " # Change if your startup scripts' names contain spaces
53rc_conf_files="/etc/rc.conf /etc/rc.conf.local"
54
55# Experimental - test before enabling
56gbde_autoattach_all="NO" # YES automatically mounts gbde devices from fstab
57gbde_devices="NO" # Devices to automatically attach (list, or AUTO)

--- 503 unchanged lines hidden ---