Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Jul 1998 08:32:28 -0700 (PDT)
From:      Thomas Dean <tomdean@ix.netcom.com>
To:        FreeBSD-current@FreeBSD.ORG
Subject:   Savecore_enable not in rc.conf
Message-ID:  <199807271532.IAA14392@ix.netcom.com>

next in thread | raw e-mail | index | archive | help
Should savecore_enable be in rc.conf?

/etc/rc contains:

# 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
        echo -n checking for core dump...
        savecore /var/crash
fi


Should we change rc.conf?

dumpdev="NO"            # Device name to crashdump to (if enabled).
savecore_enable="NO"	# Save kernel core dumps (if enables).

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199807271532.IAA14392>