From 3c425648b98dd6a9fa172ef744b2bc8cd10cfdbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Kr=C3=BCger?= Date: Tue, 18 Jan 2022 19:22:43 +0100 Subject: [PATCH] manman-sync: mess with lua --- package/gluon-manman-sync/luasrc/usr/bin/manman-sync | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/package/gluon-manman-sync/luasrc/usr/bin/manman-sync b/package/gluon-manman-sync/luasrc/usr/bin/manman-sync index 0463d542..e183fa52 100755 --- a/package/gluon-manman-sync/luasrc/usr/bin/manman-sync +++ b/package/gluon-manman-sync/luasrc/usr/bin/manman-sync @@ -196,7 +196,13 @@ if uci:get_bool('gluon-manman-sync', 'sync', 'enabled') then -- Use this when changing something that needs a reload and/or rollback (not the hostname) local function set(a, b, c, d, isbool) - local curval = isbool and uci:get_bool(a, b, c) or uci:get(a, b, c) + local curval + + if isbool then + curval = uci:get_bool(a, b, c) + else + curval = uci:get(a, b, c) + end if curval ~= d then uci:set(a, b, c, d)