2020-05-17 08:25:07 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-03-13 08:17:32 +01:00
|
|
|
printenv >> /etc/environment
|
2020-05-17 08:25:07 +02:00
|
|
|
envsubst < /opt/backup/rsync.template > /opt/backup/rsync.sh
|
2021-03-13 20:17:33 +01:00
|
|
|
if [ "$NO_RSYNC" == 1 ]; then
|
|
|
|
sed -i '/rsync.sh/d' ./crontab
|
|
|
|
rm /opt/backup/rsync.*
|
|
|
|
fi
|
2020-05-17 08:25:07 +02:00
|
|
|
crontab ./crontab && touch /var/log/cron.log && crond && tail -f /var/log/cron.log
|