I've installed AutoMySQLBackup manually by putting the following bash script in my /etc/cron.hourly folder.
#!/bin/sh
/opt/automysqlbackup/automysqlbackup /opt/automysqlbackup/automysqlbackup.conf
chown root.root /opt/automysqlbackup/backup/db* -R
find /opt/automysqlbackup/backup/db* -type f -exec chmod 400 {} \;
find /opt/automysqlbackup/backup/db* -type d -exec chmod 700 {} \;
Will weekly and monthly backups also work this way? If not, what can I do to make them work with a fully manual install?
I'm guessing they willl not since the program doesn't seem to know what kind of backup it's doing (everything gets stored under the /daily folder).