Skip to content
Snippets Groups Projects
Commit bb2adefd authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-autoupdater: adjust for new updater logic

The probability field is removed, updates are performed once per night between
04:00 and 05:00.
parent 059ea7e5
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,6 @@ local function check_branch(k, _)
need_string(prefix .. 'name')
need_string_array(prefix .. 'mirrors')
need_number(prefix .. 'probability')
need_number(prefix .. 'good_signatures')
need_string_array(prefix .. 'pubkeys')
end
......
0 * * * * /usr/sbin/autoupdater
......@@ -12,7 +12,6 @@ for name, config in pairs(site.autoupdater.branches) do
{
name = config.name,
mirror = config.mirrors,
probability = config.probability,
good_signatures = config.good_signatures,
pubkey = config.pubkeys,
}
......@@ -42,3 +41,13 @@ c:set('autoupdater', 'settings', 'version_file', '/lib/gluon/release')
c:save('autoupdater')
c:commit('autoupdater')
local autoupdater_util = require 'autoupdater.util'
autoupdater_util.randomseed()
-- Perform updates at a random time between 04:00 and 05:00
local f = io.open('/lib/gluon/cron/autoupdater', 'w')
f:write(string.format('%i 4 * * * /usr/sbin/autoupdater\n', math.random(0, 59)))
f:close()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment