From dc3fadf2134541c9e70548f4897b01f2f8bddf07 Mon Sep 17 00:00:00 2001 From: joerg Date: Sun, 21 Sep 1997 16:09:48 +0000 Subject: [PATCH] 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. --- etc/rc | 9 +++------ etc/rc.conf | 3 +-- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/etc/rc b/etc/rc index fb8b9bc163b7..3433643997a6 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 9925a71c6174..70e0c40bf838 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).