mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
New variable ${name}_offcmd may be used to supply commands
executed if named service is not enabled. Previously start_precmd
could be used for such a task but now rc.subr(8) does not call it
if a service is not enabled.
Fix devd startup script to use it instead of start_precmd.
PR: 279198
Reported by: Dmitry S. Lukhtionov
Tested by: Dmitry S. Lukhtionov
(cherry picked from commit 32a579e4fc69a65e8901111ad5f65ec56a97dfab)
(cherry picked from commit c2db3a0c7d31116028b38b426a9b139d26cbc7e5)
40 lines
669 B
Bash
Executable file
40 lines
669 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
|
|
run_rc_command "$1"
|