/etc/automysqlbackup/myserver.conf contains this line
CONFIG_backup_local_files=( /etc/my.cnf /etc/automysqlbackup/myserver.conf /opt/local/bin/automysqlbackup )
when process runs the log file indicates
Backup local files. Doing this weekly on CONFIG_do_weekly.
No local backup files specified.
success!
There is an error in the backup_local_files routine. The initial test to see if there are files to backup tests for NO files. Changing the sense of the test allows local files to actually be backed up.
diff of the change to make backup of local files work...
398c398
< if ((! ${#CONFIG_backup_local_files[@]})) ; then
---
> if (( ${#CONFIG_backup_local_files[@]})) ; then
FYI, I tried editing line 398 as described in previous comment but no luck, same problem: files specified are not backed up. I'm using v3.0_rc4.
There may also be a misunderstanding about the backup local files feature, which is that it's coded as a weekly operation. So, it will require the fix above, but it will also only run on the day you designate for weekly backups, which would be Thursdays in the example below:
To have it run on every time the script is evoked, additionally patch like this.
Last edit: john e 2013-10-17
PS - Attached here is a version that would work for daily backups.