* luci/contrib/olsrd-luci: adept config generator to new uci api and fix ifname in interface sections

This commit is contained in:
Jo-Philipp Wich 2008-09-03 00:36:13 +00:00
parent 15eb2bcbb0
commit c842b668b0

View file

@ -19,7 +19,8 @@ require("luci.fs")
require("luci.util")
require("luci.model.uci")
local conf = luci.model.uci.get_all("olsr")
local uci = luci.model.uci.cursor()
local conf = uci:get_all("olsr")
local function _value(val)
if val:match("^[0-9%. \t]+$") or val == "yes" or val == "no" then
@ -34,7 +35,11 @@ local function _section(sect,sval,parstr)
local pad = ""
if sval then
rv = string.format( '%s "%s"\n{\n', conf[sect][".type"], conf[sect][sval] )
if sval == "Interface" then
rv = string.format( 'Interface "%s"\n{\n', uci:get("network",conf[sect][sval],"ifname") )
else
rv = string.format( '%s "%s"\n{\n', conf[sect][".type"], conf[sect][sval] )
end
pad = "\t"
end