summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorjoerg <joerg@FreeBSD.org>1997-09-21 16:09:48 +0000
committerjoerg <joerg@FreeBSD.org>1997-09-21 16:09:48 +0000
commitdc3fadf2134541c9e70548f4897b01f2f8bddf07 (patch)
tree593610512fd73fb603d94dd129e0d9fff42846fe /etc
parentaab3d0a47854b3b263f0dca21d8393aaa8e2a94d (diff)
downloadFreeBSD-src-dc3fadf2134541c9e70548f4897b01f2f8bddf07.zip
FreeBSD-src-dc3fadf2134541c9e70548f4897b01f2f8bddf07.tar.gz
Unspam rev 1.114 that got spammed when someone commited the rc.conf
changes: drop `savecore_enable' now that our savecore obeyes the minfree file.
Diffstat (limited to 'etc')
-rw-r--r--etc/rc9
-rw-r--r--etc/rc.conf3
2 files changed, 4 insertions, 8 deletions
diff --git a/etc/rc b/etc/rc
index fb8b9bc..3433643 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: rc,v 1.136 1997/09/13 09:29:21 brian Exp $
+# $Id: rc,v 1.137 1997/09/13 21:07:12 brian Exp $
# From: @(#)rc 5.27 (Berkeley) 6/5/91
# System startup script run by init on autoboot
@@ -134,13 +134,10 @@ rm -rf /var/spool/uucp/.Temp/*
(cd /var/run && { cp /dev/null utmp; chmod 644 utmp; })
# enable dumpdev so that savecore can see it
-if [ "X${dumpdev}" != X"NO" -a -e ${dumpdev} ]; then
- dumpon ${dumpdev}
-fi
-
# /var/crash should be a directory or a symbolic link
# to the crash directory if core dumps are to be saved.
-if [ "X${savecore_enable}" = X"YES" -a -d /var/crash ]; then
+if [ "X${dumpdev}" != X"NO" -a -e ${dumpdev} -a -d /var/crash ]; then
+ dumpon ${dumpdev}
echo -n checking for core dump...
savecore /var/crash
fi
diff --git a/etc/rc.conf b/etc/rc.conf
index 9925a71..70e0c40 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.25 1997/08/19 16:49:30 pst Exp $
+# $Id: rc.conf,v 1.26 1997/09/11 10:58:58 danny Exp $
##############################################################
### Important initial Boot-time options #####################
@@ -125,7 +125,6 @@ lpd_enable="YES" # Run the line printer daemon.
lpd_flags="" # Flags to lpd (if enabled).
sendmail_enable="YES" # Run the sendmail daemon (or NO).
sendmail_flags="-bd -q30m" # -bd is pretty mandatory.
-savecore_enable="NO" # Save kernel crashdumps for debugging (or NO).
dumpdev="NO" # Device name to crashdump to (if enabled).
check_quotas="NO" # Check quotas (or NO).
accounting_enable="NO" # Turn on process accounting (or NO).
OpenPOWER on IntegriCloud