aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/mod_cron.lua4
-rw-r--r--teal-src/plugins/mod_cron.tl5
2 files changed, 9 insertions, 0 deletions
diff --git a/plugins/mod_cron.lua b/plugins/mod_cron.lua
index 257bf399..8d38c227 100644
--- a/plugins/mod_cron.lua
+++ b/plugins/mod_cron.lua
@@ -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
diff --git a/teal-src/plugins/mod_cron.tl b/teal-src/plugins/mod_cron.tl
index fc9e9934..078869a9 100644
--- a/teal-src/plugins/mod_cron.tl
+++ b/teal-src/plugins/mod_cron.tl
@@ -54,6 +54,11 @@ 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 require"util.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
+ local now = os.time();
+ task.last = now - now % 86400;
+ end
return true;
end