]> git.sur5r.net Git - bacula/bacula/blobdiff - regress/scripts/testa-bacula-dir.conf.in
Make out of freespace non-fatal for removable devices -- i.e. behaves like tape
[bacula/bacula] / regress / scripts / testa-bacula-dir.conf.in
index 554f71bc48a23e701f297cf96741e2bdeb840e9b..09f10a9b23574a34733d2d68c7e05a74c7570a78 100644 (file)
@@ -5,8 +5,8 @@
 #
 
 Director {                            # define myself
-  Name = rufus-dir
-  DIRport = 8101                # where we listen for UA connections
+  Name = @hostname@-dir
+  DIRPort = @dirport@                # where we listen for UA connections
   QueryFile = "@scriptdir@/query.sql"
   WorkingDirectory = "@working_dir@"
   PidDirectory = "@piddir@"
@@ -20,13 +20,15 @@ Director {                            # define myself
 Job {
   Name = "MultiVol"
   Type = Backup
-  Client=rufus-fd 
+  Client=@hostname@-fd 
   Level = Full
   FileSet="Full Set"
   Storage = File 
   Messages = Standard
   Write Bootstrap = "@working_dir@/SmallVols.bsr"
   Pool = SmallVols
+  SpoolData = yes
+  Max Run Time = 30min
 }
 
 
@@ -34,12 +36,13 @@ Job {
   Name = "VerifyVolume"
   Type = Verify
   Level = VolumeToCatalog
-  Client=rufus-fd 
+  Client=@hostname@-fd 
   FileSet="Full Set"
   Storage = File
   Messages = Standard
   Pool = Default
   Write Bootstrap = "@working_dir@/NightlySave.bsr"
+  Max Run Time = 30min
 }
 
 
@@ -48,29 +51,30 @@ Job {
 Job {
   Name = "RestoreFiles"
   Type = Restore
-  Client=rufus-fd 
+  Client=@hostname@-fd 
   FileSet="Full Set"
   Storage = File
   Messages = Standard
   Pool = Default
-  Where = /tmp/bacula-restores
+  Where = @tmpdir@/bacula-restores
+  Max Run Time = 30min
 }
 
 
 # List of files to be backed up
 FileSet {
   Name = "Full Set"
-  Include = signature=SHA1 { 
-    </tmp/file-list
+  Include { Options { signature=SHA1 }
+    File =<@tmpdir@/file-list
   }
 }
 
 
 # Client (File Services) to backup
 Client {
-  Name = rufus-fd
-  Address = rufus
-  FDPort = 8102
+  Name = @hostname@-fd
+  Address = @hostname@
+  FDPort = @fdport@
   Catalog = MyCatalog
   Password = "xevrjURYoCHhn26RaJoWbeWXEY/a3VqGKp/37tgWiuHc"          # password for FileDaemon
   File Retention = 30d                # 30 days
@@ -81,8 +85,8 @@ Client {
 # Definiton of file storage device
 Storage {
   Name = File
-  Address = rufus                # N.B. Use a fully qualified name here
-  SDPort = 8103
+  Address = @hostname@                # N.B. Use a fully qualified name here
+  SDPort = @sdport@
   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
   Device = FileStorage
   Media Type = File
@@ -90,8 +94,8 @@ Storage {
 
 Storage {
   Name = File1
-  Address = rufus                # N.B. Use a fully qualified name here
-  SDPort = 8103
+  Address = @hostname@                # N.B. Use a fully qualified name here
+  SDPort = @sdport@
   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
   Device = FileStorage1
   Media Type = File1
@@ -101,28 +105,30 @@ Storage {
 # Generic catalog service
 Catalog {
   Name = MyCatalog
-  dbname = bacula; user = bacula; password = ""
+  @libdbi@
+  dbname = @db_name@; user = @db_user@; password = "@db_password@"
 }
 
 # Reasonable message delivery -- send most everything to email address
 #  and to the console
 Messages {
   Name = Standard
-  mailcommand = "@sbindir@/smtp -h localhost -f \"\(Bacula Regression\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
-  operatorcommand = "@sbindir@/smtp -h localhost -f \"\(Bacula Regression\) %r\" -s \"Bacula: Intervention needed for %j\" %r"
-  MailOnError = @job_email@ = all
-  operator = @job_email@ = mount
-  console = all, !skipped
+  mailcommand = "@sbindir@/bsmtp -h localhost -f \"\(Bacula regression\) %r\" -s \"Regression: %t %e of %c %l\" %r"
+  operatorcommand = "@sbindir@/bsmtp -h localhost -f \"\(Bacula regression\) %r\" -s \"Regression: Intervention needed for %j\" %r"
+# MailOnError = @job_email@ = all, !terminate
+# operator = @job_email@ = mount
+  console = all, !skipped, !terminate
 
   append = "@working_dir@/log" = all, !skipped
+  catalog = all, !skipped
 }
 
 Messages {
   Name = NoEmail
-  mailcommand = "@sbindir@/smtp -h localhost -f \"\(Bacula Regression\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
-  console = all, !skipped
-
+  mailcommand = "@sbindir@/bsmtp -h localhost -f \"\(Bacula regression\) %r\" -s \"Regression: %t %e of %c %l\" %r"
+  console = all, !skipped, !terminate, !restored
   append = "@working_dir@/log" = all, !skipped
+  catalog = all, !skipped
 }
 
     
@@ -133,7 +139,6 @@ Pool {
   Recycle = yes                       # Bacula can automatically recycle Volumes
   AutoPrune = yes                     # Prune expired volumes
   Volume Retention = 365d             # one year
-  Accept Any Volume = yes             # write on any volume in the pool
 }
 
 Pool {
@@ -142,9 +147,7 @@ Pool {
   Recycle = yes                       # Bacula can automatically recycle Volumes
   AutoPrune = yes                     # Prune expired volumes
   Volume Retention = 365d             # one year
-  Accept Any Volume = yes             # write on any volume in the pool
   Maximum Volumes = 10
   MaximumVolumeBytes = 10M
   LabelFormat = Small
 }
-