From da11f1f5a6ea6d67c483472664cba1c515011296 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 18 Aug 2013 16:29:25 +0200 Subject: [PATCH] crontab.d/jobs: Add support to run job every minute. --- crontab.d/jobs | 2 ++ crontab.d/jobs.minutely/.gitignore | 0 2 files changed, 2 insertions(+) create mode 100644 crontab.d/jobs.minutely/.gitignore diff --git a/crontab.d/jobs b/crontab.d/jobs index 496a020..dd6e5b7 100644 --- a/crontab.d/jobs +++ b/crontab.d/jobs @@ -33,6 +33,8 @@ PATH=$HOME/bin:$HOME/.shell/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/u 47 6 * * 7 RAND_SLEEP 3600; run-parts --report .crontab.d/jobs.weekly 52 6 1 * * RAND_SLEEP 3600; run-parts --report .crontab.d/jobs.monthly +# Run every minute. +* * * * * run-parts --report .crontab.d/jobs.minutely # Run every x hours. 31 */6 * * * RAND_SLEEP 600; run-parts --report .crontab.d/jobs.hourly6 39 */8 * * * RAND_SLEEP 600; run-parts --report .crontab.d/jobs.hourly8 diff --git a/crontab.d/jobs.minutely/.gitignore b/crontab.d/jobs.minutely/.gitignore new file mode 100644 index 0000000..e69de29 -- 2.44.1