mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_cron: Initialize daily tasks so they run around midnight UTC
Eventually the goal is to have daily tasks run while there is little activity, but that will vary with the server and the usage patterns of its users. This is a start anyway.
This commit is contained in:
parent
82f6358657
commit
6f3409f3f2
2 changed files with 9 additions and 0 deletions
|
@ -21,6 +21,10 @@ 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 require("util.datetime").datetime(task.last) or "never");
|
||||
if task.last == nil and task.when == "daily" then
|
||||
local now = os.time();
|
||||
task.last = now - now % 86400;
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue