| 123456789101112131415161718192021 |
- Job {
- Name = "BackupCatalog"
- Description = "Backup the catalog database (after the nightly save)"
- JobDefs = "DefaultJob"
- Level = Full
- FileSet="Catalog"
- Schedule = "WeeklyCycleAfterBackup"
- # This creates an ASCII copy of the catalog
- # Arguments to make_catalog_backup.pl are:
- # make_catalog_backup.pl <catalog-name>
- RunBeforeJob = "/usr/lib/bareos/scripts/make_catalog_backup.pl MyCatalog"
- # This deletes the copy of the catalog
- RunAfterJob = "/usr/lib/bareos/scripts/delete_catalog_backup"
- # This sends the bootstrap via mail for disaster recovery.
- # Should be sent to another system, please change recipient accordingly
- Write Bootstrap = "|/usr/bin/bsmtp -h root@localhost -f \"\(Bareos\) \" -s \"Bootstrap for Job %j\" root@localhost" # (#01)
- Priority = 11 # run after main backup
- }
|