]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
BEE Backport regress/scripts/bacula-dir.conf.vc.in
authorEric Bollengier <eric@baculasystems.com>
Fri, 4 Sep 2020 08:58:25 +0000 (10:58 +0200)
committerEric Bollengier <eric@baculasystems.com>
Thu, 24 Mar 2022 08:02:56 +0000 (09:02 +0100)
This commit is the result of the squash of the following main commits:

Author: Eric Bollengier <eric@baculasystems.com>
Date:   Thu May 4 14:34:04 2017 +0200

    regress: Add templates for virtual changer

regress/scripts/bacula-dir.conf.vc.in [new file with mode: 0755]

diff --git a/regress/scripts/bacula-dir.conf.vc.in b/regress/scripts/bacula-dir.conf.vc.in
new file mode 100755 (executable)
index 0000000..f587879
--- /dev/null
@@ -0,0 +1,60 @@
+
+Storage {
+  Name = VirtA
+  Address = @hostname@
+  SDPort = @sdport@
+  Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
+  Device = VirtCh
+  Media Type = VirtMedia0
+  Autochanger = Yes
+  Maximum Concurrent Jobs = 10
+  # 9 drives so we fix read to less than half
+  Maximum Concurrent Read Jobs = 4
+}
+
+Storage {
+  Name = VirtB
+  Address = @hostname@
+  SDPort = @sdport@
+  Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
+  Device = VirtCh
+  Media Type = VirtMedia1
+  Autochanger = Yes
+  Maximum Concurrent Jobs = 50
+  Maximum Concurrent Read Jobs = 4
+}
+
+Pool {
+  Name = "Pool1"
+  Pool Type = Backup
+  Storage = "VirtA"
+  Job Retention = 2 hours
+  File Retention = 100 min
+  Volume Retention = 3 hours
+  Maximum Volume Jobs = 7
+  Label Format = "Pool1-"
+  Next Pool = "Pool2"
+}
+
+Pool {
+  Name = "Pool2"
+  Pool Type = Backup
+  Storage = "VirtA"
+  Job Retention = 2 hours
+  File Retention = 100 min
+  Volume Retention = 3 hours
+  Maximum Volume Jobs = 7
+  Label Format = "Pool2-"
+  Next Pool = "Pool3"
+}
+
+Pool {
+  Name = "Pool3"
+  Pool Type = Backup
+  Storage = "VirtB"
+  Job Retention = 2 hours
+  File Retention = 105 min
+  Volume Retention = 2.5 hours
+  Maximum Volume Jobs = 1
+  Label Format = "Pool3-"
+}