manman tweaks

This commit is contained in:
Maciej Krüger 2021-12-15 09:10:05 +01:00 committed by Alexander List
parent 4dcf3e0212
commit 0810a08519
4 changed files with 15 additions and 7 deletions

View File

@ -19,7 +19,7 @@ msgid "ManMan location ID"
msgstr "ManMan Standort-ID"
msgid ""
"Sync data from ManMan by entering ManMan location id here.\n"
"Sync configuration from ManMan by entering ManMan location id here.\n"
"This will automatically keep name, location and ips in sync with the values "
"specified in ManMan."
msgstr ""

View File

@ -8,7 +8,7 @@ msgid "ManMan location ID"
msgstr ""
msgid ""
"Sync data from ManMan "
"Sync configuration from ManMan "
"by entering ManMan location id here.\n"
"This will automatically keep name, location and ips "
"in sync with the values specified in ManMan."

View File

@ -6,8 +6,8 @@ return function(form, uci)
local pkg_i18n = i18n 'gluon-config-mode-manman-sync'
local msg = pkg_i18n.translate(
'Sync data from ManMan ' ..
'by entering ManMan location id here.\n' ..
'Sync configuration from ManMan ' ..
'by entering ManMan location id here.\n' ..
'This will automatically keep name, location and ips ' ..
'in sync with the values specified in ManMan.'
)

View File

@ -12,12 +12,16 @@ local mappings = {
}
if uci:get_bool('gluon', 'manman_sync', 'enabled') then
if not uci:get('gluon', 'manman_sync', 'location_id') then
local location_id = uci:get('gluon', 'manman_sync', 'location_id')
if not location_id then
print('E: manman location_id missing')
return 2
end
-- check manman location, abort if not reachable
-- check manman reachability, abort if not reachable
-- get location from ip
location = getLocation()
print('Syncing with location ' .. location['name'])
@ -48,7 +52,10 @@ if uci:get_bool('gluon', 'manman_sync', 'enabled') then
for index, net in ipairs(device['networks']) do
net_name = net['name']
net_mapped = 'mesh_' .. (mappings[net_name] or net_name)
net_mapped = mappings[net_name] or net_name
if not string.find(net_mapped, '_') then
net_mapped = 'mesh_' .. net_mapped
end
cidr = ip.new(net['ip'], net['netmask']):string()
@ -57,6 +64,7 @@ if uci:get_bool('gluon', 'manman_sync', 'enabled') then
end
-- TODO: exec gluon-reload
print('Reloading...')
else
print('manman-sync not enabled, skipping')
end