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:
Kim Alvefur 2023-07-30 13:03:40 +02:00
parent 4d69962644
commit 3a071d87b8
2 changed files with 0 additions and 9 deletions

View file

@ -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