2008-03-03 02:44:01 +05:30
|
|
|
#!@PREFIX@/sbin/runscript
|
2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
2011-06-30 05:16:31 +05:30
|
|
|
# Released under the 2-clause BSD license.
|
2007-11-23 17:34:11 +05:30
|
|
|
|
|
|
|
description="Saves a kernel dump."
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2008-02-19 19:45:53 +05:30
|
|
|
need localmount
|
2009-07-01 04:37:32 +05:30
|
|
|
keyword -jail -prefix
|
2007-11-23 17:34:11 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
start()
|
|
|
|
{
|
2009-04-27 13:21:18 +05:30
|
|
|
: ${dump_dir:=/var/crash}
|
|
|
|
if ! [ -d "$dump_dir" ]; then
|
|
|
|
mkdir -p "$dump_dir"
|
|
|
|
chmod 700 "$dump_dir"
|
2007-11-23 17:34:11 +05:30
|
|
|
fi
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
if [ "$RC_UNAME" = FreeBSD ]; then
|
2007-11-23 17:34:11 +05:30
|
|
|
# Don't quote ${dump_device}, so that if it's unset,
|
|
|
|
# savecore will check on the partitions listed in fstab
|
|
|
|
# without errors in the output
|
2009-04-27 13:21:18 +05:30
|
|
|
savecore -C "$dump_dir" $dump_device >/dev/null
|
2007-11-23 17:34:11 +05:30
|
|
|
else
|
2009-04-27 13:21:18 +05:30
|
|
|
ls "$dump_dir"/bsd* > /dev/null 2>&1
|
2007-11-23 17:34:11 +05:30
|
|
|
fi
|
|
|
|
[ $? = 0 ] || return 0
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
local sopts="$dump_dir $dump_device"
|
|
|
|
yesno $dump_compress && sopts="-z $sopts"
|
|
|
|
ebegin "Saving kernel core dump in $dump_dir"
|
|
|
|
savecore $sopts >/dev/null
|
2007-11-23 17:34:11 +05:30
|
|
|
eend $?
|
|
|
|
}
|