mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_cron: Initialize timestamp of new tasks to start of period
Makes it more generic so new periods (e.g. weekly etc) can be added easily.
This commit is contained in:
parent
914d3acbd5
commit
d6070eea1f
2 changed files with 5 additions and 5 deletions
|
@ -22,9 +22,9 @@ function module.add_host(host_module)
|
|||
task.save = save_task;
|
||||
module:log("debug", "%s task %s added, last run %s", task.when, task.id,
|
||||
task.last and datetime.datetime(task.last) or "never");
|
||||
if task.last == nil and task.when == "daily" then
|
||||
if task.last == nil then
|
||||
local now = os.time();
|
||||
task.last = now - now % 86400;
|
||||
task.last = now - now % periods[task.when];
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
|
|
@ -55,10 +55,10 @@ function module.add_host(host_module : moduleapi)
|
|||
task.save = save_task;
|
||||
module:log("debug", "%s task %s added, last run %s", task.when, task.id,
|
||||
task.last and datetime.datetime(task.last) or "never");
|
||||
if task.last == nil and task.when == "daily" then
|
||||
-- initialize daily tasks to run at ~midnight UTC for now
|
||||
if task.last == nil then
|
||||
-- initialize new tasks so e.g. daily tasks run at ~midnight UTC for now
|
||||
local now = os.time();
|
||||
task.last = now - now % 86400;
|
||||
task.last = now - now % periods[task.when];
|
||||
end
|
||||
return true;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue