我无法通过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")
答案 0 :(得分:1)
来自维基:
Add new section "name" with type "type":
x:set("config", "name", "type")
-- real world example:
x:set("network", "wan6", "interface")