2014-07-05 00:48:56 +00:00
|
|
|
need_string 'autoupdater.branch'
|
|
|
|
|
|
|
|
local function check_branch(k, _)
|
2015-10-11 17:31:44 +00:00
|
|
|
assert_uci_name(k)
|
|
|
|
|
2014-07-05 00:48:56 +00:00
|
|
|
local prefix = string.format('autoupdater.branches[%q].', k)
|
|
|
|
|
|
|
|
need_string(prefix .. 'name')
|
|
|
|
need_string_array(prefix .. 'mirrors')
|
|
|
|
need_number(prefix .. 'good_signatures')
|
|
|
|
need_string_array(prefix .. 'pubkeys')
|
|
|
|
end
|
|
|
|
|
|
|
|
need_table('autoupdater.branches', check_branch)
|