1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
--[[
This file is part of updater-ng. Don't edit it.
]]
local uci_cursor = nil
if uci then
uci_cursor = uci.cursor(root_dir .. "/etc/config")
else
ERROR("UCI library is not available. Configuration not used.")
end
local function uci_cnf(name, default)
if uci_cursor then
return uci_cursor:get("updater", "turris", name) or default
else
return default
end
end
-- Configuration variables
local mode = uci_cnf("mode", "branch") -- should we follow branch or version?
local branch = uci_cnf("branch", "hbs") -- which branch to follow
local version = uci_cnf("version", nil) -- which version to follow
local lists = uci_cnf("pkglists", {}) -- what additional lists should we use
minimal_builds = uci_cnf("use_minimal", "0") == "1" -- if packages-minimal should be used
Export('minimal_builds')
-- Verify that we have sensible configuration
if type(lists) == "string" then -- if there is single list then uci returns just a string
lists = {lists}
end
if mode == "version" and not version then
WARN("Mode configured to be 'version' but no version provided. Changing mode to 'branch' instead.")
mode = "branch"
end
-- Common URI to lists
local base_url
if mode == "branch" then
base_url = "https://repo.turris.cz/" .. branch .. "/lists/"
elseif mode == "version" then
base_url = "https://repo.turris.cz/archive/" .. version .. "/lists/"
else
DIE("Invalid updater.turris.mode specified: " .. mode)
end
-- Common connection settings for Turris OS scripts
local script_options = {
security = "Remote",
pubkey = {
"file:///etc/updater/keys/release.pub",
"file:///etc/updater/keys/standby.pub",
"file:///etc/updater/keys/test.pub" -- It is normal for this one to not be present in production systems
}
}
-- The distribution base script. It contains the repository and bunch of basic packages
Script(base_url .. "base.lua", script_options)
-- Additional enabled distribution lists
local exec_list = {} -- We want to run userlist only once even if it's defined multiple times
for _, l in ipairs(lists) do
if exec_list[l] then
WARN("Turris package list '" .. l .. "' specified multiple times")
else
Script(base_url .. l .. ".lua", script_options)
exec_list[l] = true
end
end
|