[Buildroot] [PATCH v2] package/dcron: fix /etc/cron.d/system cron jobs

Mario Haustein mario.haustein at hrz.tu-chemnitz.de
Mon Sep 26 16:08:49 UTC 2022


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 at hrz.tu-chemnitz.de>
---
Changes v1 -> v2:
  - Use `git format-patch` to export the patch
  - Specify the version bump which broke dcron in the commit message

Signed-off-by: Mario Haustein <mario.haustein at hrz.tu-chemnitz.de>
---
 package/dcron/0002-system-crontab.patch | 28 +++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 package/dcron/0002-system-crontab.patch

diff --git a/package/dcron/0002-system-crontab.patch b/package/dcron/0002-system-crontab.patch
new file mode 100644
index 0000000000..95d9606b7a
--- /dev/null
+++ b/package/dcron/0002-system-crontab.patch
@@ -0,0 +1,28 @@
+From 1fd99b71b063b1573beaf9f6b801ec5be2fbe24f Mon Sep 17 00:00:00 2001
+From: Mario Haustein <mario.haustein at 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 at hrz.tu-chemnitz.de>
+[Upstream status: 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
-- 
2.30.2




More information about the buildroot mailing list