manman-sync: mess with lua

This commit is contained in:
Maciej Krüger 2022-01-18 19:22:43 +01:00 committed by Alexander List
parent 3674dddc97
commit 3c425648b9

View File

@ -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) -- Use this when changing something that needs a reload and/or rollback (not the hostname)
local function set(a, b, c, d, isbool) 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 if curval ~= d then
uci:set(a, b, c, d) uci:set(a, b, c, d)