1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-28 08:02:54 +00:00

Add a couple of variables for rc.d

Submitted by:	Mike Makonnen
This commit is contained in:
Gordon Tetlow 2002-06-13 22:27:31 +00:00
parent dde7cef3d2
commit 2952767837
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98188

View File

@ -19,6 +19,9 @@
### Important initial Boot-time options ####################
##############################################################
rc_ng="NO" # Set to YES to enable new-style rc. Experimental.
rc_info="YES" # Enables display of informational messages at boot.
rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown
swapfile="NO" # Set to name of swapfile if aux swapfile desired.
apm_enable="NO" # Set to YES to enable APM BIOS functions (or NO).
apmd_enable="NO" # Run apmd to handle APM event from userland.
@ -125,9 +128,17 @@ inetd_flags="-wW" # Optional flags to inetd
# named. It may be possible to run named in a sandbox, man security for
# details.
#
named_rcng="NO" # XXX Temporary. Enable to use new rc
# functionality in support of named. See
# variables below.
named_enable="NO" # Run named, the DNS server (or NO).
named_program="/usr/sbin/named" # path to named, if you want a different one.
named_flags="-u bind -g bind" # Flags for named
named_chrootdir="" # Chroot directory (or "" not to auto-chroot it)
named_chroot_autoupdate="YES" # Automatically install/update chrooted
# components of named. See /etc/rc.d/named.
named_symlink_enable="YES" # Symlink /var/run/named.pid and /var/run/ndc
# to their chrooted counterparts.
#
# kerberos. Do not run the admin daemons on slave servers
@ -387,6 +398,7 @@ entropy_save_num="8" # Number of entropy cache files to save.
harvest_interrupt="YES" # Entropy device harvests interrupt randomness
harvest_ethernet="YES" # Entropy device harvests ethernet randomness
harvest_p_to_p="YES" # Entropy device harvests point-to-point randomness
dmesg_enable="YES" # Save dmesg(8) to /var/run/dmesg.boot
##############################################################
### Define source_rc_confs, the mechanism used by /etc/rc.* ##