Add in new pools
This commit is contained in:
parent
f4dbd012b7
commit
6c7f92651e
|
@ -33,9 +33,9 @@ Job {
|
|||
Schedule = EveryTwoDays
|
||||
Messages = JoesMail
|
||||
|
||||
Pool = FullFile # required parameter for all Jobs, despite what appears in the next few lines
|
||||
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines
|
||||
|
||||
Full Backup Pool = FullFile
|
||||
Full Backup Pool = Full-Pool
|
||||
Differential Backup Pool = Diff-Pool
|
||||
Incremental Backup Pool = IncrFile
|
||||
Incremental Backup Pool = Incr-Pool
|
||||
}
|
|
@ -9,11 +9,11 @@ Job { # Caleb's Job
|
|||
#Schedule = EveryTwoDays
|
||||
Messages = JoesMail
|
||||
|
||||
Pool = FullFile # required parameter for all Jobs, despite what appears in the next few lines
|
||||
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines
|
||||
|
||||
Full Backup Pool = FullFile
|
||||
Full Backup Pool = Full-Pool
|
||||
Differential Backup Pool = Diff-Pool
|
||||
Incremental Backup Pool = IncrFile
|
||||
Incremental Backup Pool = Incr-Pool
|
||||
}
|
||||
|
||||
Job { # Mark's Job
|
||||
|
@ -25,11 +25,11 @@ Job { # Mark's Job
|
|||
Schedule = EveryTwoDays
|
||||
Messages = MarksMail
|
||||
|
||||
Pool = FullFile # required parameter for all Jobs, despite what appears in the next few lines
|
||||
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines
|
||||
|
||||
Full Backup Pool = FullFile
|
||||
Full Backup Pool = Full-Pool
|
||||
Differential Backup Pool = Diff-Pool
|
||||
Incremental Backup Pool = IncrFile
|
||||
Incremental Backup Pool = Incr-Pool
|
||||
}
|
||||
|
||||
Job { # My Job
|
||||
|
@ -41,11 +41,11 @@ Job { # My Job
|
|||
Schedule = EveryTwoDays
|
||||
Messages = JoesMail
|
||||
|
||||
Pool = FullFile # required parameter for all Jobs, despite what appears in the next few lines
|
||||
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines
|
||||
|
||||
Full Backup Pool = FullFile
|
||||
Full Backup Pool = Full-Pool
|
||||
Differential Backup Pool = Diff-Pool
|
||||
Incremental Backup Pool = IncrFile
|
||||
Incremental Backup Pool = Incr-Pool
|
||||
}
|
||||
|
||||
Job { # Backup Michael
|
||||
|
@ -57,11 +57,11 @@ Job { # Backup Michael
|
|||
Schedule = EveryTwoDays
|
||||
Messages = MikesMail
|
||||
|
||||
Pool = FullFile # required parameter for all Jobs, despite what appears in the next few lines
|
||||
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines
|
||||
|
||||
Full Backup Pool = FullFile
|
||||
Full Backup Pool = Full-Pool
|
||||
Differential Backup Pool = Diff-Pool
|
||||
Incremental Backup Pool = IncrFile
|
||||
Incremental Backup Pool = Incr-Pool
|
||||
}
|
||||
Job { # Backup Matthew
|
||||
Name = "Backup-Matthew"
|
||||
|
@ -72,9 +72,9 @@ Job { # Backup Matthew
|
|||
Schedule = EveryTwoDays
|
||||
Messages = MattsMail
|
||||
|
||||
Pool = FullFile # required parameter for all Jobs, despite what appears in the next few lines
|
||||
Pool = Full-Pool # required parameter for all Jobs, despite what appears in the next few lines
|
||||
|
||||
Full Backup Pool = FullFile
|
||||
Full Backup Pool = Full-Pool
|
||||
Differential Backup Pool = Diff-Pool
|
||||
Incremental Backup Pool = IncrFile
|
||||
Incremental Backup Pool = Incr-Pool
|
||||
}
|
||||
|
|
|
@ -12,6 +12,20 @@ Pool {
|
|||
Cleaning Prefix = "CLN"
|
||||
}
|
||||
|
||||
Pool {
|
||||
Name = Full-Pool
|
||||
Pool Type = Backup
|
||||
Recycle = yes
|
||||
AutoPrune = yes
|
||||
Volume Retention = 6 months
|
||||
Storage = Iron-Autochanger
|
||||
|
||||
Maximum Volume Bytes = 800G
|
||||
#Maximum Volumes = 10
|
||||
|
||||
Cleaning Prefix = "CLN"
|
||||
}
|
||||
|
||||
Pool {
|
||||
Name = Diff-Pool
|
||||
Pool Type = Backup
|
||||
|
@ -40,6 +54,20 @@ Pool {
|
|||
Cleaning Prefix = "CLN"
|
||||
}
|
||||
|
||||
Pool {
|
||||
Name = Incr-Pool
|
||||
Pool Type = Backup
|
||||
Recycle = yes
|
||||
AutoPrune = yes
|
||||
Volume Retention = 1 month
|
||||
Storage = Iron-Autochanger
|
||||
|
||||
Maximum Volume Bytes = 800G
|
||||
#Maximum Volumes = 10
|
||||
|
||||
Cleaning Prefix = "CLN"
|
||||
}
|
||||
|
||||
Pool {
|
||||
Name = Archive-Pool
|
||||
Pool Type = Backup
|
||||
|
|
Loading…
Reference in New Issue