Deleted Added
full compact
rc.conf (219820) rc.conf (220962)
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 219820 2011-03-21 09:58:24Z jeff $
18# $FreeBSD: head/etc/defaults/rc.conf 220962 2011-04-23 04:26:31Z dougb $
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.
26rc_startmsgs="YES" # Show "Starting foo:" messages at boot

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

269#
270# named. It may be possible to run named in a sandbox, man security for
271# details.
272#
273named_enable="NO" # Run named, the DNS server (or NO).
274named_program="/usr/sbin/named" # Path to named, if you want a different one.
275named_conf="/etc/namedb/named.conf" # Path to the configuration file
276#named_flags="" # Use this for flags OTHER than -u and -c
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.
26rc_startmsgs="YES" # Show "Starting foo:" messages at boot

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

269#
270# named. It may be possible to run named in a sandbox, man security for
271# details.
272#
273named_enable="NO" # Run named, the DNS server (or NO).
274named_program="/usr/sbin/named" # Path to named, if you want a different one.
275named_conf="/etc/namedb/named.conf" # Path to the configuration file
276#named_flags="" # Use this for flags OTHER than -u and -c
277named_pidfile="/var/run/named/pid" # Must set this in named.conf as well
278named_uid="bind" # User to run named as
279named_chrootdir="/var/named" # Chroot directory (or "" not to auto-chroot it)
280named_chroot_autoupdate="YES" # Automatically install/update chrooted
281 # components of named. See /etc/rc.d/named.
282named_symlink_enable="YES" # Symlink the chrooted pid file
283named_wait="NO" # Wait for working name service before exiting
284named_wait_host="localhost" # Hostname to check if named_wait is enabled
285named_auto_forward="NO" # Set up forwarders from /etc/resolv.conf

--- 428 unchanged lines hidden ---
277named_uid="bind" # User to run named as
278named_chrootdir="/var/named" # Chroot directory (or "" not to auto-chroot it)
279named_chroot_autoupdate="YES" # Automatically install/update chrooted
280 # components of named. See /etc/rc.d/named.
281named_symlink_enable="YES" # Symlink the chrooted pid file
282named_wait="NO" # Wait for working name service before exiting
283named_wait_host="localhost" # Hostname to check if named_wait is enabled
284named_auto_forward="NO" # Set up forwarders from /etc/resolv.conf

--- 428 unchanged lines hidden ---