procd: add default timeout for reload trigger actions
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
c02f41c1d2
commit
f88e3a4c0a
1 changed files with 10 additions and 0 deletions
|
@ -32,6 +32,7 @@
|
||||||
|
|
||||||
. $IPKG_INSTROOT/usr/share/libubox/jshn.sh
|
. $IPKG_INSTROOT/usr/share/libubox/jshn.sh
|
||||||
|
|
||||||
|
PROCD_RELOAD_DELAY=1000
|
||||||
_PROCD_SERVICE=
|
_PROCD_SERVICE=
|
||||||
|
|
||||||
_procd_call() {
|
_procd_call() {
|
||||||
|
@ -221,6 +222,11 @@ _procd_set_param() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_procd_add_timeout() {
|
||||||
|
[ "$PROCD_RELOAD_DELAY" -gt 0 ] && json_add_int "" "$PROCD_RELOAD_DELAY"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
_procd_add_interface_trigger() {
|
_procd_add_interface_trigger() {
|
||||||
json_add_array
|
json_add_array
|
||||||
_procd_add_array_data "$1"
|
_procd_add_array_data "$1"
|
||||||
|
@ -240,6 +246,8 @@ _procd_add_interface_trigger() {
|
||||||
|
|
||||||
json_close_array
|
json_close_array
|
||||||
json_close_array
|
json_close_array
|
||||||
|
|
||||||
|
_procd_add_timeout
|
||||||
}
|
}
|
||||||
|
|
||||||
_procd_add_reload_interface_trigger() {
|
_procd_add_reload_interface_trigger() {
|
||||||
|
@ -271,6 +279,8 @@ _procd_add_config_trigger() {
|
||||||
json_close_array
|
json_close_array
|
||||||
|
|
||||||
json_close_array
|
json_close_array
|
||||||
|
|
||||||
|
_procd_add_timeout
|
||||||
}
|
}
|
||||||
|
|
||||||
_procd_add_raw_trigger() {
|
_procd_add_raw_trigger() {
|
||||||
|
|
Loading…
Reference in a new issue