gluon-core: remove obsolete proto 'batadv' -> 'gluon_mesh' migration

More migration code from 2016.
main
Matthias Schiffer 2021-12-31 22:10:54 +01:00
parent 16bf5e3e5d
commit bae14abca4
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
#!/usr/bin/lua
local uci = require('simple-uci').cursor()
local function migrate_iface(iface)
if iface.proto ~= 'batadv' or iface.mesh ~= 'bat0' then
return
end
local s = iface['.name']
uci:set('network', s, 'proto', 'gluon_mesh')
uci:set('network', s, 'fixed_mtu', true)
if iface.mesh_no_rebroadcast then
uci:set('network', s, 'transitive', iface.mesh_no_rebroadcast)
end
uci:delete('network', s, 'mesh')
uci:delete('network', s, 'mesh_no_rebroadcast')
end
uci:foreach('network', 'interface', migrate_iface)
uci:save('network')