diff options
Diffstat (limited to 'applications/luci-app-lxc/luasrc/model/cbi')
-rw-r--r-- | applications/luci-app-lxc/luasrc/model/cbi/lxc.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/applications/luci-app-lxc/luasrc/model/cbi/lxc.lua b/applications/luci-app-lxc/luasrc/model/cbi/lxc.lua index ac0fdff332..7040f0ecff 100644 --- a/applications/luci-app-lxc/luasrc/model/cbi/lxc.lua +++ b/applications/luci-app-lxc/luasrc/model/cbi/lxc.lua @@ -16,7 +16,9 @@ Author: Petar Koretic <petar.koretic@sartura.hr> local fs = require "nixio.fs" -m = Map("lxc", translate("LXC Containers")) +m = Map("lxc", translate("LXC Containers"), + translate("<b>Please note:</b> For LXC Containers you need a custom OpenWrt image.<br />") + .. translate("The image should include at least support for 'kernel cgroups', 'kernel namespaces' and 'miscellaneous LXC related options'.")) if fs.access("/etc/config/lxc") then m:section(SimpleSection).template = "lxc" |