Revert "mesh-olsrd: tell l3 with hack about intfs"

This reverts commit 83b18ae44f4da4063072b91ada6a6286a6da8a6f.
This commit is contained in:
Maciej Krüger 2022-04-04 16:08:56 +02:00 committed by Alexander List
parent bee6197058
commit 17b0823cd0

View File

@ -20,14 +20,14 @@ echotol3roamd() {
reload_service() {
for i in $(echo /nhdpinfo interface | nc localhost 2009 | cut -f1)
for i in $(ubus call network.interface dump | jsonfilter -e "@.interface[@.proto='gluon_mesh' && @.up=true].device")
do
echotol3roamd "add_meshif $i"
done
for i in $(echotol3roamd "get_meshifs"| jsonfilter -e "@.mesh_interfaces[@]")
do
if ! echo /nhdpinfo interface | nc localhost 2009 | cut -f1 |grep -q $i
if ! ubus call network.interface dump | jsonfilter -e "@.interface[@.proto='gluon_mesh' && @.up=true].device"|grep -q $i
then
echotol3roamd "del_meshif $i"
fi