2008-03-02 21:14:01 +00:00
|
|
|
#!@PREFIX@/sbin/runscript
|
2009-05-01 15:11:40 +01:00
|
|
|
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
|
2008-01-11 15:31:10 +00:00
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
2007-11-23 12:04:11 +00:00
|
|
|
|
|
|
|
description="Configures a specific kernel dump device."
|
|
|
|
|
|
|
|
depend() {
|
|
|
|
need swap
|
2009-07-01 00:07:32 +01:00
|
|
|
keyword -jail -prefix
|
2007-11-23 12:04:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
# Setup any user requested dump device
|
2009-04-27 07:51:18 +00:00
|
|
|
if [ -n "$dump_device" ]; then
|
|
|
|
ebegin "Activating kernel core dump device ($dump_device)"
|
2007-11-23 12:04:11 +00:00
|
|
|
dumpon ${dump_device}
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
ebegin "Deactiving kernel core dump device"
|
|
|
|
dumpon off
|
|
|
|
eend $?
|
|
|
|
}
|