NetBSD/etc/rc.d/savecore

31 lines
541 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: savecore,v 1.3 2000/09/19 13:04:39 lukem Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: savecore
# REQUIRE: syslogd
. /etc/rc.subr
name="savecore"
rcvar=$name
2000-03-10 14:53:23 +03:00
start_cmd="savecore_start"
stop_cmd=":"
savecore_start()
{
# /var/crash should be a directory or a symbolic link
# to the crash directory if core dumps are to be saved.
#
if [ -d /var/crash/. ]; then
echo "Checking for core dump..."
savecore $savecore_flags /var/crash
else
warn "No /var/crash directory; savecore not run."
fi
}
load_rc_config $name
2000-03-10 14:53:23 +03:00
run_rc_command "$1"