Guest User

Untitled

a guest
Nov 12th, 2016
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. # Backup the catalog database (after the nightly save)
  2. Job {
  3. Name = "BackupCatalog"
  4. JobDefs = "DefaultJob"
  5. Level = Full
  6. FileSet="Catalog"
  7. Schedule = "WeeklyCycleAfterBackup"
  8. # This creates an ASCII copy of the catalog
  9. # Arguments to make_catalog_backup.pl are:
  10. # make_catalog_backup.pl <catalog-name>
  11. RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog"
  12. # This deletes the copy of the catalog
  13. RunAfterJob = "/etc/bacula/scripts/delete_catalog_backup"
  14. Write Bootstrap = "/opt/bacula/working/BackupCatalog.bsr"
  15. Priority = 11 # run after main backup
  16. }
  17.  
  18. #
  19. #
  20. #
  21. # Generic catalog service
  22. Catalog {
  23. Name = MyCatalog
  24. dbname = "bacula"; dbuser = "Blah!"; dbpassword = "Blah!Blah!"
  25. }
Add Comment
Please, Sign In to add comment