From: Chris Koeritz <fred@gruntose.com>
Date: Sun, 9 Mar 2025 20:26:12 +0000 (+0000)
Subject: revised to add --ssl flag
X-Git-Tag: 2.140.189^2~10
X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=bfb8934979c3c59421791e83aa74c87d2791f065;p=feisty_meow.git

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?
---

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
 
 ##############