sexta-feira, 10 de outubro de 2014

HOW TO DEFINE BACULA - POOL TYPE COPY (POST 9)

Pool {
  Name =monthly
  Pool Type = Backup
  Recycle = yes # Bacula can automatically recycle Volumes
  AutoPrune = yes # Prune expired volumes
  Volume Use Duration = 3 days
  Volume Retention = 362 days # one year
  Maximum Volume Bytes = 500MB # Limit Volume size to something reasonable
  Maximum Volumes = 100 # Limit number of Volumes in Pool
  Label Format = "copy-${NumVols}"
  Next pool = copy
  Storage = File2
}


Pool {
  Name = Copy
  Pool Type = Backup
  Recycle = yes # Bacula can automatically recycle Volumes
  AutoPrune = yes # Prune expired volumes
  Volume Use Duration = 3 days
  Volume Retention = 362 days # one year
  Maximum Volume Bytes = 500MB # Limit Volume size to something reasonable
  Maximum Volumes = 100 # Limit number of Volumes in Pool
  Label Format = "copy-${NumVols}"
  Storage = File2
}

Schedule {
Name "schedule_copy"
  Run = Full Pool=Daily friday at 20:12
  Run = Full Pool=Week friday at 20:12
  Run = Full Pool=Monthlyl friday at 20:12
}

Job {
  Name = "BackupCopy"
  Type = Copy # ou Migration
  JobDefs = "DefaultJob"
  Client = debian-fd
  FileSet = "bacula_director_set"
  Pool = Daily
  Storage = File
  Selection Type = PoolUncopiedJobs
  Schedule = schedule_copy
}

}


Nenhum comentário:

Postar um comentário