freebsd-dev/etc/rc.d/dumpon
Pawel Jakub Dawidek bd57d5b0f5 Mark scripts as not usable inside a jail by adding keyword 'nojail'.
Some suggestions from:	rwatson, Ruben de Groot <mail25@bzerk.org>
2004-03-08 12:25:05 +00:00

44 lines
562 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: dumpon
# REQUIRE: initrandom
# BEFORE: disks savecore
# KEYWORD: FreeBSD nojail
. /etc/rc.subr
name="dumpon"
start_cmd="dumpon_start"
stop_cmd="dumpon_stop"
dumpon_start()
{
# Enable dumpdev so that savecore can see it. Enable it
# early so a crash early in the boot process can be caught.
#
case ${dumpdev} in
[Nn][Oo] | '')
;;
*)
/sbin/dumpon -v ${dumpdev}
;;
esac
}
dumpon_stop()
{
case ${dumpdev} in
[Nn][Oo] | '')
;;
*)
/sbin/dumpon -v off
;;
esac
}
load_rc_config $name
run_rc_command "$1"