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.
This commit is contained in:
parent
aab3d0a478
commit
dc3fadf213
9
etc/rc
9
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
|
||||
|
@ -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).
|
||||
|
Loading…
Reference in New Issue
Block a user