| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- JobDefs {
- Name = "DefaultJob"
- Type = Backup
- Level = Incremental
- Client = lto7-fd
- FileSet = "SelfTest" # selftest fileset (#13)
- #Schedule = "WeeklyCycle"
- Storage = File
- Messages = Standard
- Pool = Incremental
- Priority = 10
- Write Bootstrap = "/var/lib/bareos/%c.bsr"
- Full Backup Pool = Full # write Full Backups into "Full" Pool (#05)
- Differential Backup Pool = Differential # write Diff Backups into "Differential" Pool (#08)
- Incremental Backup Pool = Incremental # write Incr Backups into "Incremental" Pool (#11)
- }
- #
- # Define the main nightly save backup job
- # By default, this job will back up to disk in /var/lib/bareos/storage
- Job {
- Name = "Backup_archivo_to_LTO7"
- JobDefs = "DefaultJob"
- Client = archivo-fd
- Storage="LTO7"
- FileSet="archivo hdd01"
- }
- #
- # Define the main nightly save backup job
- # By default, this job will back up to disk in /var/lib/bareos/storage
- Job {
- Name = "Backup_archivo_Test"
- JobDefs = "DefaultJob"
- FileSet="archivo test"
- Storage="LTO7"
- #Client = lto7-fd
- Client = archivo-fd
- }
- #
- # Define the main nightly save backup job
- # By default, this job will back up to disk in /var/lib/bareos/storage
- Job {
- Name = "Backup_SelfTest"
- JobDefs = "DefaultJob"
- FileSet="SelfTest"
- Storage="LTO7"
- #Client = lto7-fd
- #Client = archivo-fd
- }
- #
- # Backup the catalog database (after the nightly save)
- #
- Job {
- Name = "BackupCatalog"
- 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 localhost -f \"\(Bareos\) \" -s \"Bootstrap for Job %j\" root@localhost" # (#01)
- Priority = 11 # run after main backup
- }
- #
- # Standard Restore template, to be changed by Console program
- # Only one such job is needed for all Jobs/Clients/Storage ...
- #
- Job {
- Name = "RestoreFiles"
- Type = Restore
- Client=lto7-fd
- FileSet = "Linux All"
- Storage = File
- Pool = Incremental
- Messages = Standard
- Where = /storage/restore
- }
|