From acfbd98ce0285f5bc12c6321a79346aecb3786c5 Mon Sep 17 00:00:00 2001 From: Michiel Blokzijl Date: Fri, 3 Jul 2020 18:54:19 +0100 Subject: [PATCH] mwan3: Fix mwan3 start not doing anything 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 --- net/mwan3/Makefile | 2 +- net/mwan3/files/usr/sbin/mwan3 | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/net/mwan3/Makefile b/net/mwan3/Makefile index c78df6221..1ef345aac 100644 --- a/net/mwan3/Makefile +++ b/net/mwan3/Makefile @@ -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 PKG_LICENSE:=GPL-2.0 diff --git a/net/mwan3/files/usr/sbin/mwan3 b/net/mwan3/files/usr/sbin/mwan3 index b5ee29aea..a854dfda2 100755 --- a/net/mwan3/files/usr/sbin/mwan3 +++ b/net/mwan3/files/usr/sbin/mwan3 @@ -129,6 +129,7 @@ start() uci_toggle_state mwan3 globals enabled "1" + config_load mwan3 config_foreach ifup interface }