From bfb8934979c3c59421791e83aa74c87d2791f065 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sun, 9 Mar 2025 20:26:12 +0000 Subject: [PATCH] revised to add --ssl flag saw my backups starting to be empty, and found that this needs a --ssl flag to be happy, except that before i made the change, the backups had started working again. not sure wtf, except maybe i installed a missing bit last time i was fuggling around with this stuff? --- infobase/configuration/cron/backup_mysql_databases.crontab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infobase/configuration/cron/backup_mysql_databases.crontab b/infobase/configuration/cron/backup_mysql_databases.crontab index c80f91ac..15c69e08 100644 --- a/infobase/configuration/cron/backup_mysql_databases.crontab +++ b/infobase/configuration/cron/backup_mysql_databases.crontab @@ -3,7 +3,7 @@ #[backup_all_mysql_databases] # backs up all of our mysql databases twice a week (as currently configured). -28 4 * * */3 (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; mysqldump -u root '-pPASSWORD' --all-databases | gzip > /z/stuffing/archives/database_backup_$(hostname)_$(date_stringer).sql.gz) &>>/tmp/${CRONUSER}-cron-backup_mysql_databases.log +28 4 * * */3 (source $FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh; mysqldump --ssl -u root '-pPASSWORD' --all-databases | gzip > /z/stuffing/archives/database_backup_$(hostname)_$(date_stringer).sql.gz) &>>/tmp/${CRONUSER}-cron-backup_mysql_databases.log ############## -- 2.34.1