From 993b0937c8e75d97cadabd143f9c4b65f4e18f82 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Tue, 3 Nov 2009 10:13:50 +0100 Subject: [PATCH] Dailyjobs are here for users who don't like anacron. 0hourly executes cron.hourly scripts and other will be executed by dailyjobs. --- contrib/dailyjobs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 contrib/dailyjobs diff --git a/contrib/dailyjobs b/contrib/dailyjobs new file mode 100644 index 0000000..0101c16 --- /dev/null +++ b/contrib/dailyjobs @@ -0,0 +1,9 @@ +SHELL=/bin/bash +PATH=/sbin:/bin:/usr/sbin:/usr/bin +MAILTO=root +HOME=/ + +# run-parts +02 4 * * * root [ ! -f /etc/cron.hourly/0anacron ] && run-parts /etc/cron.daily +22 4 * * 0 root [ ! -f /etc/cron.hourly/0anacron ] && run-parts /etc/cron.weekly +42 4 1 * * root [ ! -f /etc/cron.hourly/0anacron ] && run-parts /etc/cron.monthly -- 2.40.0