manman-sync: only re-sync if changed
This commit is contained in:
parent
5d14d3e3d1
commit
43447cd3bd
@ -126,6 +126,11 @@ if uci:get_bool('gluon-manman-sync', 'sync', 'enabled') then
|
||||
|
||||
print('Syncing with location ' .. location.location.name)
|
||||
|
||||
if uci:get('gluon-manman-sync', 'sync', 'last_data') and json.stringify(location) == uci:get('gluon-manman-sync', 'sync', 'last_data') then
|
||||
print('Nothing changed, skipping sync')
|
||||
return 0
|
||||
end
|
||||
|
||||
local owner = uci:get_first('gluon-node-info', 'owner')
|
||||
uci:set('gluon-node-info', owner, 'contact', location.administrator.email)
|
||||
local _location = uci:get_first('gluon-node-info', 'location')
|
||||
@ -179,6 +184,8 @@ if uci:get_bool('gluon-manman-sync', 'sync', 'enabled') then
|
||||
uci:set('gluon-static-ip', net_mapped, 'ip4', cidr)
|
||||
end
|
||||
|
||||
uci:set('gluon-manman-sync', 'sync', 'last_data', json.stringify(location))
|
||||
|
||||
uci:save('system')
|
||||
uci:save('gluon-manman-sync')
|
||||
uci:save('gluon-static-ip')
|
||||
|
Loading…
Reference in New Issue
Block a user