diff options
author | Dirk Brenken <dev@brenken.org> | 2018-05-23 22:22:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-23 22:22:44 +0200 |
commit | 1b2cd8d1c41daaf3bb4ba50a82835a890f5c06bf (patch) | |
tree | 04dd54d02531105b3d2eaa77137598b8d3c255ee /applications/luci-app-lxc/luasrc/model | |
parent | 7acacf2cf806c5d74fc60f8a2de95628ba52bb7d (diff) | |
parent | fa4dc6be91ad86dbaa0959b40bdb14f50ad21a67 (diff) |
Merge pull request #1808 from dibdot/lxc_fix
luci-app-lxc: fix "plain-vanilla" integration
Diffstat (limited to 'applications/luci-app-lxc/luasrc/model')
-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" |