diff options
author | peter <peter@FreeBSD.org> | 1995-07-05 04:12:33 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1995-07-05 04:12:33 +0000 |
commit | 3b4470dd32906f9cf0b5f3802fd237166308639d (patch) | |
tree | 52763436301f20d86e407381a8b4450256837505 /etc/sysconfig | |
parent | 310bc7086f9d07eb11f91ad60198b2757c0412c2 (diff) | |
download | FreeBSD-src-3b4470dd32906f9cf0b5f3802fd237166308639d.zip FreeBSD-src-3b4470dd32906f9cf0b5f3802fd237166308639d.tar.gz |
Fix a small bug in sysconfig introduced with 1.16. dumpdev needs a
definition, otherwise /etc/rc generates error messages while running "dumpon"
Reviewed by: bde
Diffstat (limited to 'etc/sysconfig')
-rw-r--r-- | etc/sysconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/sysconfig b/etc/sysconfig index 0486c24..62abb80 100644 --- a/etc/sysconfig +++ b/etc/sysconfig @@ -4,7 +4,7 @@ # This is sysconfig - a file full of useful variables that you can set # to change the default startup behavior of your system. # -# $Id: sysconfig,v 1.15 1995/06/17 03:37:18 ache Exp $ +# $Id: sysconfig,v 1.16 1995/06/25 04:01:32 bde Exp $ ######################### Start Of Syscons Section ####################### @@ -144,10 +144,10 @@ namedflags="NO" xtend=NO # Set to the name of the device for kernel crashdumps, or `off' to -# disable any statically configured dumpdev, or NO to do nothing. +# disable any statically configured dumpdev, or NO for no change. # The device should normally be one of the swap devices specified # in /etc/fstab. -# dumpdev=/dev/sd0b +dumpdev=NO # Set to YES if you want kernel crashdumps to be saved for debugging savecore=NO |