mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_cron: Revert bbd3ac65640d
Maybe it is better to run daily and weekly tasks 'now' on the theory that people set these things up during times that are appropriate for maintenance already, so the same time next day or next week might be fine for periodic cleanup.
This commit is contained in:
parent
4d69962644
commit
3a071d87b8
2 changed files with 0 additions and 9 deletions
|
@ -22,10 +22,6 @@ 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 then
|
||||
local now = os.time();
|
||||
task.last = now - now % periods[task.when];
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
||||
|
|
|
@ -56,11 +56,6 @@ 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 then
|
||||
-- initialize new tasks so e.g. daily tasks run at ~midnight UTC for now
|
||||
local now = os.time();
|
||||
task.last = now - now % periods[task.when];
|
||||
end
|
||||
return true;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue