Deleted Added
full compact
rc.conf (137205) rc.conf (137451)
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 137205 2004-11-04 13:33:29Z ru $
16# $FreeBSD: head/etc/defaults/rc.conf 137451 2004-11-09 10:03:17Z keramida $
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="NO" # Enables display of informational messages at boot.
24rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown

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

35pccard_beep="2" # pccard beep type.
36pccard_ifconfig="NO" # Specialized pccard ethernet configuration (or NO).
37pccardd_flags="-z" # Additional flags for pccardd.
38pccard_conf="/etc/defaults/pccard.conf" # pccardd(8) config file
39pccard_ether_delay="5" # Delay before trying to start dhclient in pccard_ether
40removable_interfaces="" # Removable network interfaces for /etc/pccard_ether.
41tmpmfs="AUTO" # Set to YES to always create an mfs /tmp, NO to never
42tmpsize="20m" # Size of mfs /tmp if created
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="NO" # Enables display of informational messages at boot.
24rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown

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

35pccard_beep="2" # pccard beep type.
36pccard_ifconfig="NO" # Specialized pccard ethernet configuration (or NO).
37pccardd_flags="-z" # Additional flags for pccardd.
38pccard_conf="/etc/defaults/pccard.conf" # pccardd(8) config file
39pccard_ether_delay="5" # Delay before trying to start dhclient in pccard_ether
40removable_interfaces="" # Removable network interfaces for /etc/pccard_ether.
41tmpmfs="AUTO" # Set to YES to always create an mfs /tmp, NO to never
42tmpsize="20m" # Size of mfs /tmp if created
43tmpmfs_flags="-S -o noexec,nosuid,nodev" # Extra mdmfs options for the mfs /tmp
43varmfs="AUTO" # Set to YES to always create an mfs /var, NO to never
44varsize="32m" # Size of mfs /var if created
44varmfs="AUTO" # Set to YES to always create an mfs /var, NO to never
45varsize="32m" # Size of mfs /var if created
46varmfs_flags="-S" # Extra mount options for the mfs /var
45populate_var="AUTO" # Set to YES to always (re)populate /var, NO to never
46local_startup="/usr/local/etc/rc.d /usr/X11R6/etc/rc.d" # startup script dirs.
47script_name_sep=" " # Change if your startup scripts' names contain spaces
48rc_conf_files="/etc/rc.conf /etc/rc.conf.local"
49
50# Experimental - test before enabling
51gbde_autoattach_all="NO" # YES automatically mounts gbde devices from fstab
52gbde_devices="NO" # Devices to automatically attach (list, or AUTO)

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

--- 470 unchanged lines hidden ---