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