gluon/package/gluon-autoupdater/check_site.lua

15 lines
404 B
Lua
Raw Normal View History

2014-07-05 00:48:56 +00:00
need_string 'autoupdater.branch'
local function check_branch(k, _)
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_match(prefix .. 'mirrors', '^http://')
2014-07-05 00:48:56 +00:00
need_number(prefix .. 'good_signatures')
need_string_array_match(prefix .. 'pubkeys', '^%x+$')
2014-07-05 00:48:56 +00:00
end
need_table('autoupdater.branches', check_branch)