From 6a23f18a5bb72c8544abda70cafd2dac0796b12b Mon Sep 17 00:00:00 2001 From: vas3k Date: Tue, 29 Mar 2022 14:29:24 +0200 Subject: [PATCH] Fix crontab syntax --- etc/crontab | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/crontab b/etc/crontab index 757418e..27e8b5c 100644 --- a/etc/crontab +++ b/etc/crontab @@ -1,2 +1,2 @@ -0 * * * * cd /home/vas3k/infomate.club/scripts && python3 update.py >/proc/1/fd/1 2>/proc/1/fd/2 -0 4 * * * cd /home/vas3k/infomate.club/scripts && python3 cleanup.py >/proc/1/fd/1 2>/proc/1/fd/2 +0 * * * * python3 /app/scripts/update.py >/proc/1/fd/1 2>/proc/1/fd/2 +0 4 * * * python3 /app/scripts/cleanup.py >/proc/1/fd/1 2>/proc/1/fd/2