This also introduces an api change to the subcheck()! Before: -> subcheck(key, value, conf_name) After: -> subcheck(key, conf_name) The idea is, that it's hard to submit a value, which should be then checked again. It's wouldn't be clear (after merging) from which config the value is, and so an helpful error message would be impossible.
15 lines
460 B
Lua
15 lines
460 B
Lua
need_string(in_site('autoupdater.branch'))
|
|
|
|
local function check_branch(k, conf_name)
|
|
assert_uci_name(k, conf_name)
|
|
|
|
local prefix = string.format('autoupdater.branches[%q].', k)
|
|
|
|
need_string(in_site(prefix .. 'name'))
|
|
need_string_array_match(prefix .. 'mirrors', '^http://')
|
|
need_number(in_site(prefix .. 'good_signatures'))
|
|
need_string_array_match(in_site(prefix .. 'pubkeys'), '^%x+$')
|
|
end
|
|
|
|
need_table('autoupdater.branches', check_branch)
|