From 4d0e12faebb949f71acffc0a9f2584b66c33bc84 Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Mon, 1 Jul 2019 20:16:13 +0200 Subject: [PATCH] Update crontab Signed-off-by: Severin Kaderli --- system/.config/cron/crontab | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/system/.config/cron/crontab b/system/.config/cron/crontab index 82a174c..b389929 100644 --- a/system/.config/cron/crontab +++ b/system/.config/cron/crontab @@ -11,13 +11,10 @@ # This file is loaded on boot by crontab. # Synchronize Google Drive every 15 minutes -*/15 * * * * $HOME/.local/bin/sync-drive >> $HOME/.local/log/cron.log 2>&1 +0/15 * * * * $HOME/.local/bin/sync-drive 2>> $HOME/.local/log/cron.log # Synchronize notes every 10 minutes -*/10 * * * * $HOME/.local/bin/sync-notes >> $HOME/.local/log/cron.log 2>&1 +2/10 * * * * $HOME/.local/bin/sync-notes 2>> $HOME/.local/log/cron.log # Synchronize tasks every 5 minutes -*/5 * * * * $HOME/.local/bin/sync-tasks >> $HOME/.local/log/cron.log 2>&1 - -# Synchronize rss feeds every 15 minutes -*/15 * * * * $HOME/.local/bin/rss-sync >> $HOME/.local/log/cron.log 2>&1 +0/5 * * * * $HOME/.local/bin/sync-tasks 2>> $HOME/.local/log/cron.log