I've got the always incremental backup strategy working. It backs up to
the pool AI-Incremental and then the consolidate job goes to
AI-Consolidate.

Now I would like to add virtual full backup for offsite. Below is what I
have for configuration. I'm unsure about the setting of the pool in the
virtual full job defs and the next pool for the virtual full.

Pool {
  Name = AI-Consolidated
  Pool Type = Backup
  Recycle = yes
  Auto Prune = yes
  Volume Retention = 360 days
  Maximum Volume Bytes = 50G
  Label Format = "AI-Consolidated-"
  Volume Use Duration = 23h
  Storage = File
  Action On Purge = Truncate
  Next Pool = Offsite  ### Is this right???
}

Pool {
  Name = AI-Incremental
  Pool Type = Backup
  Recycle = yes
  Auto Prune = yes
  Volume Retention = 360 days
  Maximum Volume Bytes = 50G
  Label Format = "AI-Incremental-"
  Volume Use Duration = 23h
  Storage = File
  Next Pool = AI-Consolidated
  Action On Purge = Truncate
}


Pool {
  Name = Offsite
  Pool Type = Backup
  Recycle = yes                    
  Next Pool = Offsite
  AutoPrune = yes                  
  Volume Retention = 60 days
  Maximum Volume Bytes = 50G
  Maximum Volumes = 100        
  Label Format = "Offsite-"         
  Storage = Offsite
  Action On Purge = Truncate
}


JobDefs {
  Name = "AlwaysIncremental"
  Type = Backup
  Level = Incremental
  Schedule = "WeeklyCycle"
  Storage = File
  Messages = Standard
  Priority = 10
  Write Bootstrap = "/mnt/bareos-file/bootstrap/%c.bsr"
  Pool = AI-Incremental
  Full Backup Pool = AI-Consolidated

  Accurate = yes
  Always Incremental = yes
  Always Incremental Job Retention = 7 days
  Always Incremental Keep Number = 14
}
JobDefs {
  Name = "OffsiteJob"
  Type = Backup
  Level = VirtualFull
  Client = gemini-fd
  FileSet = "SelfTest"
  Schedule = "OffsiteSchedule"
  Storage = Offsite
  Messages = Standard
  Pool = AI-Consolidated  #### What should here? AI-Incremental or
AI-Consolidated or something else?
  Virtual Full Backup Pool = Offsite ### Is this right?
  Priority = 10
  Accurate = yes
  Write Bootstrap = "/mnt/bareos-file/bootstrap/%c.bsr"

  RunScript {
    console = "update jobid=%i jobtype=A"
    RunsOnClient = no
    RunsOnFailure = No
    RunsWhen = After
    FailJobOnError = yes
  }

}
Job {
  Name = "backup-gemini-fd"
  JobDefs = "AlwaysIncremental"
  Client = "gemini-fd"
  FileSet = "gemini-all"
}
Job {
  Name = "offsite-gemini-fd"
  JobDefs = "OffsiteJob"
  Client = "gemini-fd"
  FileSet = "gemini-all"
}

Thank you

- Jon Schewe

-- 
Research Scientist
Raytheon BBN Technologies
5775 Wayzata Blvd, Ste 630
Saint Louis Park, MN, 55416
Office: 952-545-5720

-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to