diff options
author | jkh <jkh@FreeBSD.org> | 1997-05-24 11:29:59 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-05-24 11:29:59 +0000 |
commit | a9cc482f04d44a61e1aedbfde995abf8561cef14 (patch) | |
tree | daa7e83bb4542f49f61585296ec3a634676b9e3c /etc | |
parent | 504c6b3f012c00697c9d8e30764f900534f47970 (diff) | |
download | FreeBSD-src-a9cc482f04d44a61e1aedbfde995abf8561cef14.zip FreeBSD-src-a9cc482f04d44a61e1aedbfde995abf8561cef14.tar.gz |
Allow local configuration to override this file.
Submitted by: Russell Vincent <rv@groa.uct.ac.za>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc.conf | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/etc/rc.conf b/etc/rc.conf index 001e477..4d5962f 100644 --- a/etc/rc.conf +++ b/etc/rc.conf @@ -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 |