I use the backup stone (4.0.1), and when I start the backup, it starts twice. I have only one fallback model:
Backup::Model.new(:pais3_prod_backup, 'PAIS 3 production server & database backup') do
split_into_chunks_of 2000
archive :my_archive do |archive|
archive.use_sudo
archive.add "/etc"
archive.add "/srv"
archive.exclude "/home/map7/Backup/.tmp"
archive.exclude "/home/map7/.cache"
end
end
I run it manually with the following command
backup perform -t pais3_prod_backup
Although twice as good as everyone, I have to wonder why it works twice? Where can I start debugging this?
source
share