revised to add --ssl flag
authorChris Koeritz <fred@gruntose.com>
Sun, 9 Mar 2025 20:26:12 +0000 (20:26 +0000)
committerChris Koeritz <fred@gruntose.com>
Sun, 9 Mar 2025 20:26:12 +0000 (20:26 +0000)
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

index c80f91ac2217c9cd1b3620df8eb2cf89db8dda0b..15c69e0876a41b54bd71183fa62f063653c004fd 100644 (file)
@@ -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
 
 ##############