12345678910111213141516171819202122232425262728293031 |
-
-
- local fs = require "nixio.fs"
-
- m = Map("lxc", translate("LXC Containers"))
-
- if fs.access("/etc/config/lxc") then
- m:section(SimpleSection).template = "lxc"
-
- s = m:section(TypedSection, "lxc", translate("Options"))
- s.anonymous = true
- s.addremove = false
-
- s:option(Value, "url", translate("Containers URL"))
- end
-
- return m
|