ansible-roles/mysql/templates/mysql-backup.cron.j2

12 lines
224 B
Plaintext
Raw Normal View History

#!/bin/bash
LOG_FILE=/var/log/mysql-backup.log
if [ -x /etc/cron.daily/duplicity_backup ] ; then
echo "duplicity backups active. Exiting" > $LOG_FILE
exit 0
fi
/usr/local/sbin/mysql-backup > $LOG_FILE 2>&1
exit 0