From 5a54eb4dab4f909d13cc011a9ddb3ad5b3987b45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Kr=C3=BCger?= Date: Wed, 12 Jan 2022 00:48:29 +0100 Subject: [PATCH] olsrd: dhcp-hack --- .../luasrc/lib/gluon/upgrade/500-dhcp-hack | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 package/gluon-mesh-olsrd/luasrc/lib/gluon/upgrade/500-dhcp-hack diff --git a/package/gluon-mesh-olsrd/luasrc/lib/gluon/upgrade/500-dhcp-hack b/package/gluon-mesh-olsrd/luasrc/lib/gluon/upgrade/500-dhcp-hack new file mode 100755 index 00000000..4577d3e7 --- /dev/null +++ b/package/gluon-mesh-olsrd/luasrc/lib/gluon/upgrade/500-dhcp-hack @@ -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