This commit is contained in:
Joe S
2020-08-11 15:06:58 -04:00
parent 88d6db09d5
commit bd2e33a9d1
18 changed files with 1453 additions and 67 deletions

View File

@@ -32,6 +32,10 @@ Job {
Storage = Iron-Autochanger
Schedule = EveryTwoDays
Messages = JoesMail
Reschedule Interval = 12 hours
Reschedule On Error = yes
Reschedule Times = 3
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines

View File

@@ -0,0 +1,15 @@
# These are jobs run for vms, storage, archive, etc
Job { # Archive Obelisk
Name = "Archive-Obelisk"
Client = Zinc-Client
Type = "Backup"
FileSet = "Obelisk Archive"
Storage = Iron-Autochanger
Messages = JoesMail
Pool = Archive-Pool # required parameter for all Jobs, despite what appears in the next few lines
Full Backup Pool = Archive-Pool
Incremental Backup Pool = Archive-Pool
}

View File

@@ -6,8 +6,12 @@ Job { # Backup Proxmox VZdumps
Type = "Backup"
FileSet = "Proxmox Backups"
Storage = Iron-Autochanger
#Schedule = EveryTwoDays
Schedule = EveryTwoDays
Messages = JoesMail
Reschedule Interval = 12 hours
Reschedule On Error = yes
Reschedule Times = 3
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines

View File

@@ -2,80 +2,46 @@
Job { # Caleb's Job
Name = "Backup-Caleb"
Client = Zinc-Client
Type = "Backup"
JobDefs = "Default-User-Job"
FileSet = "Caleb Backup"
Storage = Iron-Autochanger
#Schedule = EveryTwoDays
Messages = JoesMail
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines
Full Backup Pool = Full-Pool
Differential Backup Pool = Diff-Pool
Incremental Backup Pool = Incr-Pool
}
Job { # Mark's Job
Name = "Backup-Mark"
Client = Zinc-Client
Type = "Backup"
FileSet = "Mark Backup"
Storage = Iron-Autochanger
Schedule = EveryTwoDays
JobDefs = "Default-User-Job"
Messages = MarksMail
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines
Full Backup Pool = Full-Pool
Differential Backup Pool = Diff-Pool
Incremental Backup Pool = Incr-Pool
}
Job { # My Job
Name = "Backup-Joe"
Client = Zinc-Client
Type = "Backup"
JobDefs = "Default-User-Job"
FileSet = "Joe Backup"
Storage = Iron-Autochanger
Schedule = EveryTwoDays
Messages = JoesMail
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines
Full Backup Pool = Full-Pool
Differential Backup Pool = Diff-Pool
Incremental Backup Pool = Incr-Pool
}
Job { # Backup Michael
Name = "Backup-Michael"
Client = Zinc-Client
Type = "Backup"
JobDefs = "Default-User-Job"
FileSet = "Michael Backup"
Storage = Iron-Autochanger
Schedule = EveryTwoDays
Messages = MikesMail
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines
Full Backup Pool = Full-Pool
Differential Backup Pool = Diff-Pool
Incremental Backup Pool = Incr-Pool
}
Job { # Backup Matthew
Name = "Backup-Matthew"
Client = Zinc-Client
Type = "Backup"
JobDefs = "Default-User-Job"
FileSet = "Matthew Backup"
Storage = Iron-Autochanger
Schedule = EveryTwoDays
Messages = MattsMail
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines
Full Backup Pool = Full-Pool
Differential Backup Pool = Diff-Pool
Incremental Backup Pool = Incr-Pool
}
Job { # Backup Chris
Name = "Backup-Chris"
JobDefs = "Default-User-Job"
FileSet = "Chris Backup"
Messages = ChrisMail
}
Job { # Backup Evelynn
Name = "Backup-Evelynn"
JobDefs = "Default-User-Job"
FileSet = "Evelynn Backup"
}

View File

@@ -3,12 +3,31 @@
@/etc/bacula/clients/zinc-client-archive.conf
Client {
Name = Zinc-Client
Password = "iamnotacrook"
Address = 10.85.3.31
Catalog = MyCatalog
File Retention = 4 months
Job Retention = 30 years
AutoPrune = yes # Prune expired Jobs/Files
Name = Zinc-Client # Clients name
Password = "iamnotacrook" # The password that client uses?
Address = 10.85.3.31 # The address of the client jail
Catalog = MyCatalog # Specify the catalog
File Retention = 8 months # This is how long you'll be able to restore individual files for, per job
Job Retention = 30 years # Archive jobs cant be pruned for 30 years
AutoPrune = yes # Prune expired Jobs/Files
}
JobDefs { # Default Job
Name = "Default-User-Job"
Client = Zinc-Client
Type = "Backup"
FileSet = "Catalog"
Storage = Iron-Autochanger
Schedule = EveryTwoDays
Messages = JoesMail
Reschedule Interval = 12 hours
Reschedule On Error = yes
Reschedule Times = 3
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines
Full Backup Pool = Full-Pool
Differential Backup Pool = Diff-Pool
Incremental Backup Pool = Incr-Pool
}