How good are your backups?
I thought mine were pretty dang good. I found out otherwise. I had the following two lines running nightly for my backups.
# Make MySQL backup
mysqldump -u root -p "$( /var/mysqldump/mysql-$(date +%F).gz
# Delete old copies
find /var/mysqldump/ -mtime +90 -exec rm {} \;
Anybody know what's wrong with that?
For 99% of Linux commands, this would be perfectly good syntax. Unfortunately, this is one of those 1% times where things aren't the way you expect them.
I was using -u root -p "$(</root/.sql.pwd)"