如何通过lua添加命名的UCI部分?

时间:2016-10-04 04:29:42

标签: lua openwrt

我无法通过lua创建一个命名的UCI部分。 使用命令行的等效项是

uci set uhttpd.test=uhttpd
uci commit

这给出了像

这样的配置文件
config uhttpd 'test'

我无法使用 set add 重现命令行的语法。 C source似乎表示将类型传递给添加

local uci = require "uci"
uci.add("uhttpd", "test") -- adds anonymous section
uci.set("uhttpd", "test", "listen_http", "0.0.0.0:81") -- not added as named section missing
uci.commit("uhttpd")

1 个答案:

答案 0 :(得分:1)

来自维基:

Add new section "name" with type "type":
x:set("config", "name", "type")
-- real world example:
x:set("network", "wan6", "interface")

https://wiki.openwrt.org/doc/techref/uci