NetBSD/etc/rc.d/savecore

32 lines
556 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: savecore,v 1.5 2002/03/22 04:34:00 thorpej Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: savecore
# REQUIRE: syslogd
# BEFORE: SERVERS
2000-03-10 14:53:23 +03:00
. /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 $rc_flags /var/crash
2000-03-10 14:53:23 +03:00
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"