From c374711e609229cfdb572239259db20e1f06aceb Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Fri, 23 Oct 2020 08:15:54 +0200 Subject: [PATCH] mwan3: fix reload handling When the interface section was changed, the changed configuration options were not applied. This commit adds the service reload handling again. Signed-off-by: Florian Eckert --- net/mwan3/files/etc/init.d/mwan3 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/net/mwan3/files/etc/init.d/mwan3 b/net/mwan3/files/etc/init.d/mwan3 index 595fabf77..b7cf91eb1 100755 --- a/net/mwan3/files/etc/init.d/mwan3 +++ b/net/mwan3/files/etc/init.d/mwan3 @@ -111,6 +111,11 @@ stop_service() { mwan3_unlock "command" "mwan3" } +reload_service() { + stop + start +} + service_triggers() { procd_add_reload_trigger 'mwan3' }