edited runscript to show cron config on startup

This commit is contained in:
kolaente 2018-01-31 14:40:04 +01:00
parent 8fc4d00ebe
commit a62eb92071
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

2
run.sh
View File

@ -7,6 +7,6 @@ if [ -n "${NO_CRON}" ]; then
else
echo "${CRON_TIME} /backup.sh" > /crontab.conf
crontab /crontab.conf
echo "=> Running cron job"
echo "Running cron job. Config: ${CRON_TIME}"
exec crond -f
fi