opnsense-src/libexec/rc/rc.d/devd
Warner Losh e3898d552c Revert "rc.d: Add hastd as a prereq for devd"
This reverts commit 2d17f44a5a. It hangs
the boot. It turns out I installed my test on the wrong machine and
rebooted the other one...

Sponsored by:		Netflix
2025-02-04 22:11:40 -07:00

44 lines
767 B
Bash
Executable file

#!/bin/sh
#
#
# PROVIDE: devd
# REQUIRE: netif ldconfig
# BEFORE: NETWORKING mountcritremote
# KEYWORD: nojail shutdown
. /etc/rc.subr
name="devd"
desc="Device state change daemon"
rcvar="devd_enable"
command="/sbin/${name}"
devd_offcmd=devd_off
start_precmd=find_pidfile
stop_precmd=find_pidfile
find_pidfile()
{
if get_pidfile_from_conf pid-file /etc/devd.conf; then
pidfile="$_pidfile_from_conf"
else
pidfile="/var/run/${name}.pid"
fi
}
devd_off()
{
# If devd is disabled, turn it off in the kernel to avoid unnecessary
# memory usage.
if ! checkyesno ${rcvar}; then
$SYSCTL hw.bus.devctl_queue=0
fi
}
load_rc_config $name
# doesn't make sense to run in a svcj: executing potential privileged operations
devd_svcj="NO"
run_rc_command "$1"