mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 23:43:25 +00:00
a23ec70a4e
We need to limit the amount of time between consuming the entropy seeds and removing it in case of a kernel panic.
19 lines
230 B
Bash
Executable File
19 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: adjkerntz
|
|
# REQUIRE: FILESYSTEMS postrandom
|
|
# BEFORE: netif
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="adjkerntz"
|
|
start_cmd="adjkerntz -i"
|
|
stop_cmd=":"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|