From 2d9a3c59cb96eef6f7fab90d0f19c724756e9841 Mon Sep 17 00:00:00 2001 From: David J Date: Fri, 7 Jul 2017 17:01:35 -0500 Subject: [PATCH] Fix cronjob example to execute every sixth hour Example as written executes the command at every minute past the sixth hour. Replacing the * with 0 in the beginning will cause this to run at minute 0 at every sixth hour. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6deb14e..89603e9 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ crontab -e This will open your crontab. Paste in ```cron -* */6 * * * +0 */6 * * * ``` This will run the polling script every 6 hours to keep things all synced up.