docker-duplicity-cron/entrypoint.sh

50 lines
1.3 KiB
Bash
Raw Normal View History

2017-03-19 00:11:03 +00:00
#! /bin/bash
2017-07-17 02:37:16 +00:00
# If first arg is bash, we'll just execute directly
2017-03-19 00:11:03 +00:00
if [ "$1" == "bash" ]; then
exec "$@"
exit 0
fi
2017-07-17 02:37:16 +00:00
# If no env variable set, get from command line
if [ "$OPT_ARGUMENTS" == "" ]; then
export OPT_ARGUMENTS="$@"
fi
2017-06-29 06:28:48 +00:00
# If key id is provied add arg
if [ -e "$GPG_KEY_ID" ]; then
2017-07-17 02:37:16 +00:00
export OPT_ARGUMENTS="$OPT_ARGUMENTS --encrypt-sign-key=\"$GPG_KEY_ID\""
2017-06-29 06:28:48 +00:00
fi
2017-03-19 00:11:03 +00:00
if [ "$SKIP_ON_START" != "true" ]; then
/backup.sh
fi
if [ -n "$CRON_SCHEDULE" ]; then
# Export the environment to a file so it can be loaded from cron
env | sed 's/^\(.*\)=\(.*\)$/export \1="\2"/g' > /env.sh
# Remove some vars we don't want to keep
sed -i '/\(HOSTNAME\|affinity\|SHLVL\|PWD\)/d' /env.sh
# Use bash for cron
echo "SHELL=/bin/bash" > /crontab.conf
# Schedule the backups
echo "$CRON_SCHEDULE source /env.sh && /backup.sh 2>> /cron.log" >> /crontab.conf
echo "Backups scheduled as $CRON_SCHEDULE"
if [ -n "$VERIFY_CRON_SCHEDULE" ]; then
2017-06-29 01:12:49 +00:00
echo "$VERIFY_CRON_SCHEDULE source /env.sh && /verify.sh 2>> /cron.log" >> /crontab.conf
2017-03-19 00:11:03 +00:00
echo "Verify scheduled as $VERIFY_CRON_SCHEDULE"
fi
# Add to crontab
crontab /crontab.conf
echo "Starting duplicity cron..."
cron
touch /cron.log /root/duplicity.log
tail -f /cron.log /root/duplicity.log
fi