Allow local configuration to override this file.

Submitted by:	Russell Vincent <rv@groa.uct.ac.za>
This commit is contained in:
Jordan K. Hubbard 1997-05-24 11:29:59 +00:00
parent 57ae32e5e8
commit e621a18f07
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=26092

View file

@ -6,7 +6,7 @@
#
# All arguments must be in double or single quotes.
#
# $Id: rc.conf,v 1.12 1997/05/21 00:23:54 jkh Exp $
# $Id: rc.conf,v 1.13 1997/05/23 09:53:24 ache Exp $
##############################################################
### Important initial Boot-time options #####################
@ -127,3 +127,10 @@ accounting_enable="NO" # Turn on process accounting (or NO).
ibcs2_enable="NO" # Ibcs2 (SCO) emulation loaded at startup (or NO).
linux_enable="NO" # Linux emulation loaded at startup (or NO).
rand_irqs="NO" # Stir the entropy pool (or NO).
##############################################################
### Allow local configuration override at the very end here ##
##############################################################
if [ -f /etc/rc.conf.local ]; then
. /etc/rc.conf.local
fi