mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
luci-app-lxc: Download list of available distributions
There was harcoded list of available images. Instead of it, LuCI LXC app will now try to download list of available container images. Signed-off-by: Michal Hrusecky <michal.hrusecky@nic.cz>
This commit is contained in:
@@ -59,6 +59,9 @@ function index()
|
||||
page = entry({"admin", "services", "lxc_action"}, call("lxc_action"), nil)
|
||||
page.leaf = true
|
||||
|
||||
page = entry({"admin", "services", "lxc_get_downloadable"}, call("lxc_get_downloadable"), nil)
|
||||
page.leaf = true
|
||||
|
||||
page = entry({"admin", "services", "lxc_configuration_get"}, call("lxc_configuration_get"), nil)
|
||||
page.leaf = true
|
||||
|
||||
@@ -67,6 +70,27 @@ function index()
|
||||
|
||||
end
|
||||
|
||||
function lxc_get_downloadable()
|
||||
luci.http.prepare_content("application/json")
|
||||
|
||||
local f = io.popen('uname -m', 'r')
|
||||
local target = f:read('*a')
|
||||
f:close()
|
||||
target = target:gsub("^%s*(.-)%s*$", "%1")
|
||||
|
||||
local templates = {}
|
||||
|
||||
local f = io.popen('lxc-create -n just_want_to_list_available_lxc_templates -t download -- --list', 'r')
|
||||
|
||||
for line in f:lines() do
|
||||
local dist,version = line:match("^(%S+)%s+(%S+)%s+" .. target .. "%s+default%s+%S+$")
|
||||
if dist~=nil and version~=nil then templates[#templates + 1] = dist .. ":" .. version end
|
||||
end
|
||||
|
||||
f:close()
|
||||
luci.http.write_json(templates)
|
||||
end
|
||||
|
||||
function lxc_create(lxc_name, lxc_template)
|
||||
luci.http.prepare_content("text/plain")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user