From bde3ea553fece38eeb9af6ae85a81c7cebbed65f Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Thu, 17 Aug 2023 17:07:32 +0200 Subject: [PATCH] fix: remove stdout redirect from crontab --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 9ab4c8e..f167342 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -4,7 +4,7 @@ CRONTAB=/etc/cron.d/kopia-backup echo "Running cron with schedule ${KOPIA_CRON_SCHEDULE}" -echo "${KOPIA_CRON_SCHEDULE} /run-backup.sh > /dev/stdout" > ${CRONTAB} +echo "${KOPIA_CRON_SCHEDULE} /run-backup.sh" > ${CRONTAB} chmod 0644 ${CRONTAB} crontab ${CRONTAB}