Skip to content
Snippets Groups Projects
Unverified Commit b019c703 authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-mesh-vpn-fastd: reduce complexity of upgrade script

parent 64725858
No related branches found
No related tags found
No related merge requests found
......@@ -74,10 +74,8 @@ local function add_group(name, config, parent)
peer_limit = config.limit,
})
if config.peers then
for peername, peerconfig in pairs(config.peers) do
add_peer(name, peername, peerconfig)
end
for peername, peerconfig in pairs(config.peers or {}) do
add_peer(name, peername, peerconfig)
end
add_groups(name, config.groups, name)
......@@ -85,10 +83,8 @@ end
-- declared local above
function add_groups(prefix, groups, parent)
if groups then
for name, group in pairs(groups) do
add_group(prefix .. '_' .. name, group, parent)
end
for name, group in pairs(groups or {}) do
add_group(prefix .. '_' .. name, group, parent)
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment