aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_cron.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mod_cron.lua')
-rw-r--r--plugins/mod_cron.lua4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/mod_cron.lua b/plugins/mod_cron.lua
index eef25755..a39d05d5 100644
--- a/plugins/mod_cron.lua
+++ b/plugins/mod_cron.lua
@@ -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