mirror of https://github.com/aredn/aredn.git
Add names to xlink routes and bridges. (#1239)
Fix aredn_message_all file-not-found error.
This commit is contained in:
parent
f2d8adb8d3
commit
2f74728693
|
@ -73,9 +73,11 @@ then
|
||||||
else
|
else
|
||||||
# need to append to node file
|
# need to append to node file
|
||||||
retrieve_alert http://downloads.arednmesh.org/messages/all.txt aredn_message_all "all nodes"
|
retrieve_alert http://downloads.arednmesh.org/messages/all.txt aredn_message_all "all nodes"
|
||||||
echo "<br />" >> /tmp/aredn_message
|
if [ -s "/tmp/aredn_message_all" ]; then
|
||||||
cat /tmp/aredn_message_all >> /tmp/aredn_message
|
echo "<br />" >> /tmp/aredn_message
|
||||||
rm /tmp/aredn_message_all
|
cat /tmp/aredn_message_all >> /tmp/aredn_message
|
||||||
|
rm /tmp/aredn_message_all
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -309,7 +309,7 @@ function write_xlink_config(configs)
|
||||||
f:write("# Generated by advancednetwork\n")
|
f:write("# Generated by advancednetwork\n")
|
||||||
for _, config in ipairs(configs)
|
for _, config in ipairs(configs)
|
||||||
do
|
do
|
||||||
f:write("\nconfig bridge-vlan\n")
|
f:write("\nconfig bridge-vlan '" .. config.name .. "bridge'\n")
|
||||||
f:write("\toption device 'br0'\n")
|
f:write("\toption device 'br0'\n")
|
||||||
f:write("\toption vlan '" .. config.vlan .. "'\n")
|
f:write("\toption vlan '" .. config.vlan .. "'\n")
|
||||||
f:write("\tlist ports '" .. config.port .. ":t'\n")
|
f:write("\tlist ports '" .. config.port .. ":t'\n")
|
||||||
|
@ -332,7 +332,7 @@ function write_xlink_config(configs)
|
||||||
end
|
end
|
||||||
if config.peer and config.peer ~= "" then
|
if config.peer and config.peer ~= "" then
|
||||||
f:write("\toption peer '" .. config.peer .. "'\n")
|
f:write("\toption peer '" .. config.peer .. "'\n")
|
||||||
f:write("\nconfig route\n")
|
f:write("\nconfig route '" .. config.name .. "route'\n")
|
||||||
f:write("\toption interface '" .. config.name .. "'\n")
|
f:write("\toption interface '" .. config.name .. "'\n")
|
||||||
f:write("\toption target '" .. config.peer .. "'\n")
|
f:write("\toption target '" .. config.peer .. "'\n")
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue