olsrd: dhcp-hack

This commit is contained in:
Maciej Krüger 2022-01-12 00:48:29 +01:00 committed by Alexander List
parent fc6c753d82
commit 5a54eb4dab

View File

@ -0,0 +1,10 @@
#!/usr/bin/lua
local uci = require('simple-uci').cursor()
-- this hack directly uses the mesh interface as I haven't figured out teql and ddhcpd now and this shit should just work already
if uci:get('wireless', 'client_radio0', 'network') then
uci:set('wireless', 'client_radio0', 'network', 'mesh_radio0')
uci:save('wireless')
end