mwan3: Fix mwan3 start not doing anything 12709/head
authorMichiel Blokzijl <code@m01.eu>
Fri, 3 Jul 2020 17:54:19 +0000 (18:54 +0100)
committerMichiel <code@m01.eu>
Fri, 3 Jul 2020 19:03:42 +0000 (20:03 +0100)
Due to a missing config load function call, mwan3 start runs ifup for an empty
list of interfaces, thus not calling ifup at all.

This commit introduces the missing config_load call.

Signed-off-by: Michiel Blokzijl <code@m01.eu>
net/mwan3/Makefile
net/mwan3/files/usr/sbin/mwan3

index c78df6221a745c8315e14fc4bd28ea45c0f6f9ae..1ef345aaccff14e6c60581f088e879ce44067cd5 100644 (file)
@@ -8,7 +8,7 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=mwan3
-PKG_VERSION:=2.8.7
+PKG_VERSION:=2.8.8
 PKG_RELEASE:=1
 PKG_MAINTAINER:=Florian Eckert <fe@dev.tdt.de>
 PKG_LICENSE:=GPL-2.0
index b5ee29aeae14fbd73bfc7b85e344deed641359a1..a854dfda2818a97a7ea2ad2d020ef7d89e394947 100755 (executable)
@@ -129,6 +129,7 @@ start()
 
        uci_toggle_state mwan3 globals enabled "1"
 
+       config_load mwan3
        config_foreach ifup interface
 }