kumquat-buildroot/package/dcron/0002-system-crontab.patch
Mario Haustein 1557312f18 package/dcron: fix /etc/cron.d/system cron jobs
Jobs with the syntax @hourly, @daily, ... were not executed since the
version bump from `v4.5` to commit `1ba33c3325df48de46263276a43ed76cf9d81518`.
This patch fixes the bug downstream.

Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2023-04-17 08:46:51 +02:00

29 lines
819 B
Diff

From 1fd99b71b063b1573beaf9f6b801ec5be2fbe24f Mon Sep 17 00:00:00 2001
From: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Date: Fri, 2 Sep 2022 23:20:14 +0200
Subject: [PATCH] Make @hourly, @daily, ... work again
closes #15
Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Upstream: https://github.com/dubiousjim/dcron/pull/35
---
database.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/database.c b/database.c
index 37cf17a..6ec720e 100644
--- a/database.c
+++ b/database.c
@@ -455,6 +455,8 @@ SynchronizeFile(const char *dpath, const char *fileName, const char *userName)
line.cl_Days[j] = 1;
for (j=0; j<12; ++j)
line.cl_Mons[j] = 1;
+ for (j=0; j<7; ++j)
+ line.cl_Dow[j] = ALL_DOW;
}
while (*ptr == ' ' || *ptr == '\t')
--
2.35.1