mwan3: add workaround for procd change

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
(cherry picked from commit 058a2b6f30)
This commit is contained in:
Florian Eckert 2020-07-17 10:34:32 +02:00
parent b340df6824
commit 538d2fd7c3

View file

@ -10,17 +10,22 @@ boot() {
rc_procd start_service rc_procd start_service
} }
# FIXME
# fd 1000 is an inherited lock file descriptor for preventing concurrent
# init script executions. Close it here to prevent the mwan3 daemon from
# inheriting it further to avoid holding the lock indefinitely.
reload_service() { reload_service() {
/usr/sbin/mwan3 restart /usr/sbin/mwan3 restart 1000>&-
} }
start_service() { start_service() {
[ -n "${mwan3_boot}" ] && return 0 [ -n "${mwan3_boot}" ] && return 0
/usr/sbin/mwan3 start /usr/sbin/mwan3 start 1000>&-
} }
stop_service() { stop_service() {
/usr/sbin/mwan3 stop /usr/sbin/mwan3 stop 1000>&-
} }
service_triggers() { service_triggers() {