Deleted Added
full compact
rc.conf (292752) rc.conf (294295)
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 292752 2015-12-26 18:21:32Z ian $
18# $FreeBSD: head/etc/defaults/rc.conf 294295 2016-01-18 21:40:18Z imp $
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

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

614svr4_enable="NO" # SysVR4 emulation loaded at startup (or NO).
615clear_tmp_enable="NO" # Clear /tmp at startup.
616clear_tmp_X="YES" # Clear and recreate X11-related directories in /tmp
617ldconfig_insecure="NO" # Set to YES to disable ldconfig security checks
618ldconfig_paths="/usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg"
619 # shared library search paths
620ldconfig32_paths="/usr/lib32 /usr/lib32/compat"
621 # 32-bit compatibility shared library search paths
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

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

614svr4_enable="NO" # SysVR4 emulation loaded at startup (or NO).
615clear_tmp_enable="NO" # Clear /tmp at startup.
616clear_tmp_X="YES" # Clear and recreate X11-related directories in /tmp
617ldconfig_insecure="NO" # Set to YES to disable ldconfig security checks
618ldconfig_paths="/usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg"
619 # shared library search paths
620ldconfig32_paths="/usr/lib32 /usr/lib32/compat"
621 # 32-bit compatibility shared library search paths
622ldconfigsoft_paths="/usr/libsoft /usr/libsoft/compat /usr/local/libsoft"
623 # soft float compatibility shared library search paths
624 # Note: temporarily with extra stuff for transition
622ldconfig_paths_aout="/usr/lib/compat/aout /usr/local/lib/aout"
623 # a.out shared library search paths
624ldconfig_local_dirs="/usr/local/libdata/ldconfig"
625 # Local directories with ldconfig configuration files.
626ldconfig_local32_dirs="/usr/local/libdata/ldconfig32"
627 # Local directories with 32-bit compatibility ldconfig
628 # configuration files.
625ldconfig_paths_aout="/usr/lib/compat/aout /usr/local/lib/aout"
626 # a.out shared library search paths
627ldconfig_local_dirs="/usr/local/libdata/ldconfig"
628 # Local directories with ldconfig configuration files.
629ldconfig_local32_dirs="/usr/local/libdata/ldconfig32"
630 # Local directories with 32-bit compatibility ldconfig
631 # configuration files.
632ldconfig_localsoft_dirs="/usr/local/libdata/ldconfigsoft"
633 # Local directories with soft float compatibility ldconfig
634 # configuration files.
629kern_securelevel_enable="NO" # kernel security level (see security(7))
630kern_securelevel="-1" # range: -1..3 ; `-1' is the most insecure
631 # Note that setting securelevel to 0 will result
632 # in the system booting with securelevel set to 1, as
633 # init(8) will raise the level when rc(8) completes.
634update_motd="YES" # update version info in /etc/motd (or NO)
635entropy_boot_file="/boot/entropy" # Set to NO to disable very early
636 # (used at early boot time) entropy caching through reboots.

--- 67 unchanged lines hidden ---
635kern_securelevel_enable="NO" # kernel security level (see security(7))
636kern_securelevel="-1" # range: -1..3 ; `-1' is the most insecure
637 # Note that setting securelevel to 0 will result
638 # in the system booting with securelevel set to 1, as
639 # init(8) will raise the level when rc(8) completes.
640update_motd="YES" # update version info in /etc/motd (or NO)
641entropy_boot_file="/boot/entropy" # Set to NO to disable very early
642 # (used at early boot time) entropy caching through reboots.

--- 67 unchanged lines hidden ---