Hi All,


We have recently installed Bacula on a Ubuntu 10.04 64bit server. I have 
configured the jobs following a similar setup on ClearOS with regard to jobs, 
pools and schedules. But for some unknown reason, Bacula will not backup the 
catalogue to the same tape as the main backup, it works fine on ClearOS.



Here is a copy of my bacula-dir.conf: -

#
# Default Bacula Director Configuration file
#
#  The only thing that MUST be changed is to add one or more
#   file or directory names in the Include directive of the
#   FileSet resource.
#
#  For Bacula release 5.0.1 (24 February 2010) -- ubuntu 10.04
#
#  You might also want to change the default email address
#   from root to your address.  See the "mail" and "operator"
#   directives in the Messages resource.
#

Director {                  
          # define myself
  Name = ccsaber-linux-dir
  DIRport = 9101                # 
where we listen for UA connections
  QueryFile = "/etc/bacula/scripts/query.sql"
  WorkingDirectory = "/var/lib/bacula"
  PidDirectory = "/var/run/bacula"
  Maximum Concurrent Jobs = 1
#  Password = "Ui3dLcjKWiR6QIyTu+PjPK6wHlziIf7fZlSiCgiZZ3jq"    
     # Console password
  Password = "Password"
  Messages = Daemon
  DirAddress = 192.168.54.66
}

#JobDefs {
#  Name = "DefaultJob"
#  Type = Backup
#  Level = Incremental
#  Client = ccsaber-linux-fd 
#  FileSet = "Full Set"
#  Schedule = "WeeklyCycle"
#  Storage = File
#  Messages = Standard
#  Pool = File
#  Priority = 10
#  Write Bootstrap = "/var/lib/bacula/%c.bsr"
#}


#
# Define the main nightly save backup job
#   By default, this job will back up to disk in 
/nonexistant/path/to/file/archive/dir
#Job {
#  Name = "BackupClient1"
#  JobDefs = "DefaultJob"
#}

#Job {
#  Name = "BackupClient2"
#  Client = ccsaber-linux2-fd
#  JobDefs = "DefaultJob"
#}

# Backup the catalog database (after the nightly save)
#Job {
#  Name = "BackupCatalog"
#  JobDefs = "DefaultJob"
#  Level = Full
#  FileSet="Catalog"
#  Schedule = "WeeklyCycleAfterBackup"
  # This creates an ASCII copy of the catalog
  # Arguments to make_catalog_backup.pl are:
&nbsp; #&nbsp; make_catalog_backup.pl <catalog-name>
#&nbsp; RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog"
&nbsp; # This deletes the copy of the catalog
#&nbsp; RunAfterJob&nbsp; = "/etc/bacula/scripts/delete_catalog_backup"
#&nbsp; Write Bootstrap = "/var/lib/bacula/%n.bsr"
#&nbsp; Priority = 11&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp;# run after main backup
#&#125;

#
# Standard Restore template, to be changed by Console program
#&nbsp; Only one such job is needed for all Jobs/Clients/Storage ...
#
Job &#123;
&nbsp; Name = "RestoreFiles"
&nbsp; Type = Restore
&nbsp; Client=ccsaber-linux-fd&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp;
&nbsp; FileSet="Full Set"&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; 
&nbsp; Storage = File&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; 
&nbsp; Pool = Default
&nbsp; Messages = Standard
&nbsp; Where = /nonexistant/path/to/file/archive/dir/bacula-restores
&#125;


# List of files to be backed up
FileSet &#123;
&nbsp; Name = "Full Set"
&nbsp; Include &#123;
&nbsp; &nbsp; Options &#123;
&nbsp; &nbsp; &nbsp; signature = MD5
&nbsp; &nbsp; &#125;
#&nbsp; &nbsp; 
#&nbsp; Put your list of files here, preceded by 'File =', one per line
#&nbsp; &nbsp; or include an external list with&#58;
#
#&nbsp; &nbsp; File = <file-name
#
#&nbsp; Note&#58; / backs up everything on the root partition.
#&nbsp; &nbsp; if you have other partitions such as /usr or /home
#&nbsp; &nbsp; you will probably want to add them too.
#
#&nbsp; By default this is defined to point to the Bacula binary
#&nbsp; &nbsp; directory to give a reasonable FileSet to backup to
#&nbsp; &nbsp; disk storage during initial testing.
#
&nbsp; &nbsp; File = /usr/sbin
&nbsp; &#125;

#
# If you backup the root directory, the following two excluded
#&nbsp; &nbsp;files can be useful
#
&nbsp; Exclude &#123;
&nbsp; &nbsp; File = /var/lib/bacula
&nbsp; &nbsp; File = /nonexistant/path/to/file/archive/dir
&nbsp; &nbsp; File = /proc
&nbsp; &nbsp; File = /tmp
&nbsp; &nbsp; File = /.journal
&nbsp; &nbsp; File = /.fsck
&nbsp; &#125;
&#125;

#
# When to do the backups, full backup on first sunday of the month,
#&nbsp; differential &#40;i.e. incremental since full&#41; every other sunday,
#&nbsp; and incremental backups other days
#Schedule &#123;
#&nbsp; Name = "WeeklyCycle"
#&nbsp; Run = Full 1st sun at 23&#58;05
#&nbsp; Run = Differential 2nd-5th sun at 23&#58;05
#&nbsp; Run = Incremental mon-sat at 23&#58;05
#&#125;

# This schedule does the catalog. It starts after the WeeklyCycle
#Schedule &#123;
#&nbsp; Name = "WeeklyCycleAfterBackup"
#&nbsp; Run = Full sun-sat at 23&#58;10
#&#125;

# This is the backup of the catalog
FileSet &#123;
&nbsp; Name = "Catalog"
&nbsp; Include &#123;
&nbsp; &nbsp; Options &#123;
&nbsp; &nbsp; &nbsp; signature = MD5
&nbsp; &nbsp; &#125;
&nbsp; &nbsp; File = "/var/lib/bacula/bacula.sql"
&nbsp; &#125;
&#125;

# Client &#40;File Services&#41; to backup
Client &#123;
&nbsp; Name = ccsaber-linux-fd
&nbsp; Address = 192.168.54.66
&nbsp; FDPort = 9102
&nbsp; Catalog = MyCatalog
&nbsp; Password = "wYt1mFQ5rbk_ifcC_eKcQYRyeZEg39kJC"&nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; # password for FileDaemon
&nbsp; File Retention = 30 days&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # 30 
days
&nbsp; Job Retention = 6 months&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # six 
months
&nbsp; AutoPrune = yes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp;# Prune expired Jobs/Files
&#125;

#
# Second Client &#40;File Services&#41; to backup
#&nbsp; You should change Name, Address, and Password before using
#
#Client &#123;
#&nbsp; Name = ccsaber-linux2-fd&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; 
#&nbsp; Address = localhost2
#&nbsp; FDPort = 9102
#&nbsp; Catalog = MyCatalog
#&nbsp; Password = "wYt1mFQ5rbk_ifcC_eKcQYRyeZEg39kJC2"&nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp;# password for FileDaemon 2
#&nbsp; File Retention = 30 days&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # 30 
days
#&nbsp; Job Retention = 6 months&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # six 
months
#&nbsp; AutoPrune = yes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp;# Prune expired Jobs/Files
#&#125;


# Definition of file storage device
Storage &#123;
&nbsp; Name = File
# Do not use "localhost" here&nbsp; &nbsp; 
&nbsp; Address = 192.168.54.66&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; # N.B. Use a fully qualified name here
&nbsp; SDPort = 9103
&nbsp; Password = "5Lwe-_fNZHMQDKS1yYy_hShIZN0YC_VWf"
&nbsp; Device = FileStorage
&nbsp; Media Type = File
&#125;



# Definition of DDS tape storage device
Storage &#123;
&nbsp; Name = "Tape"&nbsp; &nbsp; 
#&nbsp; Do not use "localhost" here
&nbsp; Address = 192.168.54.66&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; # N.B. Use a fully qualified name here
&nbsp; SDPort = 9103
&nbsp; Password = "5Lwe-_fNZHMQDKS1yYy_hShIZN0YC_VWf"&nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; # password for Storage daemon
&nbsp; Device = Tape&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; # must be same as Device in Storage daemon
&nbsp; Media Type = DAT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; # must be same as MediaType in Storage daemon
#&nbsp; Autochanger = yes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp;# enable for autochanger device
&#125;

# Definition of 8mm tape storage device
#Storage &#123;
#&nbsp; Name = "8mmDrive"
#&nbsp; Do not use "localhost" here
#&nbsp; Address = localhost&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; # N.B. Use a fully qualified name here
#&nbsp; SDPort = 9103
#&nbsp; Password = "5Lwe-_fNZHMQDKS1yYy_hShIZN0YC_VWf"
#&nbsp; Device = "Exabyte 8mm"
#&nbsp; MediaType = "8mm"
#&#125;

# Definition of DVD storage device
#Storage &#123;
#&nbsp; Name = "DVD"
#&nbsp; Do not use "localhost" here
#&nbsp; Address = localhost&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; # N.B. Use a fully qualified name here
#&nbsp; SDPort = 9103
#&nbsp; Password = "5Lwe-_fNZHMQDKS1yYy_hShIZN0YC_VWf"
#&nbsp; Device = "DVD Writer"
#&nbsp; MediaType = "DVD"
#&#125;


# Generic catalog service
Catalog &#123;
&nbsp; Name = MyCatalog
# Uncomment the following line if you want the dbi driver
# dbdriver = "dbi&#58;sqlite3"; dbaddress = 127.0.0.1; dbport =&nbsp; 
&nbsp; dbname = bacula; DB Address = ""; dbuser = "bacula"; dbpassword = 
"Password"
&#125;

# Reasonable message delivery -- send most everything to email address
#&nbsp; and to the console
Messages &#123;
&nbsp; Name = Standard
#
# NOTE! If you send to two email or more email addresses, you will need
#&nbsp; to replace the %r in the from field &#40;-f part&#41; with a single 
valid
#&nbsp; email address in both the mailcommand and the operatorcommand.
#&nbsp; What this does is, it sets the email address that emails would display
#&nbsp; in the FROM field, which is by default the same email as they're being
#&nbsp; sent to.&nbsp; However, if you send email to more than one address, then
#&nbsp; you'll have to set the FROM address manually, to a single address. 
#&nbsp; for example, a 'no-re...@mydomain.com', is better since that tends to
#&nbsp; tell &#40;most&#41; people that its coming from an automated source.

#
&nbsp; mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f 
\"\&#40;Bacula\&#41; \<%r\>\" -s \"Bacula&#58; %t %e of %c %l\" %r"
&nbsp; operatorcommand = "/usr/lib/bacula/bsmtp -h localhost -f 
\"\&#40;Bacula\&#41; \<%r\>\" -s \"Bacula&#58; Intervention needed for %j\" %r"
&nbsp; mail = r...@localhost = all, !skipped&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; 
&nbsp; operator = r...@localhost = mount
&nbsp; console = all, !skipped, !saved
#
# WARNING! the following will create a file that you must cycle from
#&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; time to time as it will grow indefinitely. 
However, it will
#&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; also keep all your messages if they scroll 
off the console.
#
&nbsp; append = "/var/lib/bacula/log" = all, !skipped
&nbsp; catalog = all
&#125;


#
# Message delivery for daemon messages &#40;no job&#41;.
Messages &#123;
&nbsp; Name = Daemon
&nbsp; mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f 
\"\&#40;Bacula\&#41; \<%r\>\" -s \"Bacula daemon message\" %r"
&nbsp; mail = r...@localhost = all, !skipped&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; 
&nbsp; console = all, !skipped, !saved
&nbsp; append = "/var/lib/bacula/log" = all, !skipped
&#125;

# Default pool definition
Pool &#123;
&nbsp; Name = Default
&nbsp; Pool Type = Backup
&nbsp; Recycle = yes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; &nbsp;# Bacula can automatically recycle Volumes
&nbsp; AutoPrune = yes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp;# Prune expired volumes
&nbsp; Volume Retention = 365 days&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;# one year
&#125;

# File Pool definition
Pool &#123;
&nbsp; Name = File
&nbsp; Pool Type = Backup
&nbsp; Recycle = yes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp; &nbsp;# Bacula can automatically recycle Volumes
&nbsp; AutoPrune = yes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp; &nbsp; &nbsp;# Prune expired volumes
&nbsp; Volume Retention = 365 days&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;# one year
&nbsp; Maximum Volume Bytes = 50G&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; # Limit 
Volume size to something reasonable
&nbsp; Maximum Volumes = 100&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp;# Limit number of Volumes in Pool
&#125;


# Scratch pool definition
Pool &#123;
&nbsp; Name = Scratch
&nbsp; Pool Type = Backup
&#125;

#
# Restricted console used by tray-monitor to get the status of the director
#
Console &#123;
&nbsp; Name = ccsaber-linux-mon
&nbsp; Password = "dTkAPdhnOg86yPYeqgjTA0VMSNznEPfoF"
&nbsp; CommandACL = status, .status
&#125;

# CCS Bacula Definitions

# CCS FileSets
FileSet &#123;
&nbsp; Name = "ccs_files"
&nbsp; Include &#123;
&nbsp; &nbsp; Options &#123;
&nbsp; &nbsp; &nbsp; Signature = "MD5"
&nbsp; &nbsp; &nbsp; IgnoreCase = "no"
&nbsp; &nbsp; &#125;
&nbsp; &nbsp; File = "/home"
&nbsp; &#125;
&nbsp; Exclude &#123;
&nbsp; &nbsp; File = "/proc"
&nbsp; &nbsp; File = "/tmp"
&nbsp; &nbsp; File = "/.autofsck"
&nbsp; &#125;
&#125;

# CCS Pool Definitions

# Monday Pool Definitions

Pool &#123;
&nbsp; Name = "MondayPool_1"
&nbsp; PoolType = Backup
&nbsp; Recycle = yes
&nbsp; Autoprune = yes
&nbsp; VolumeRetention = 13 days
&nbsp; VolumeUseDuration = 23 hours
&nbsp; MaximumVolumes = 1
&nbsp; LabelFormat = ""
&nbsp; RecycleCurrentVolume = yes
&#125;

Pool &#123;
&nbsp; Name = "MondayPool_2"
&nbsp; PoolType = Backup
&nbsp; Recycle = yes
&nbsp; Autoprune = yes
&nbsp; VolumeRetention = 13 days
&nbsp; VolumeUseDuration = 23 hours
&nbsp; MaximumVolumes = 1
&nbsp; LabelFormat = ""
&nbsp; RecycleCurrentVolume = yes
&#125;

# Definition of Tuesday Pools

Pool &#123;
&nbsp; Name = "TuesdayPool_1"
&nbsp; PoolType = Backup
&nbsp; Recycle = yes
&nbsp; AutoPrune = yes
&nbsp; VolumeRetention = 13 days
&nbsp; VolumeUseDuration = 23 hours
&nbsp; MaximumVolumes = 1
&nbsp; LabelFormat = ""
&nbsp; RecycleCurrentVolume = yes
&#125;

Pool &#123;
&nbsp; Name = "TuesdayPool_2"
&nbsp; PoolType = Backup
&nbsp; Recycle = yes
&nbsp; AutoPrune = yes
&nbsp; VolumeRetention = 13 days
&nbsp; VolumeUseDuration = 23 hours
&nbsp; MaximumVolumes = 1
&nbsp; LabelFormat = ""
&nbsp; RecycleCurrentVolume = yes
&#125;

# Definition of Wednesday Pools

Pool &#123;
&nbsp; Name = "WednesdayPool_1"
&nbsp; PoolType = Backup
&nbsp; Recycle = yes
&nbsp; AutoPrune = yes
&nbsp; VolumeRetention = 13 days
&nbsp; VolumeUseDuration = 23 hours
&nbsp; MaximumVolumes = 1
&nbsp; LabelFormat = ""
&nbsp; RecycleCurrentVolume = yes
&#125;

Pool &#123;
&nbsp; Name = "WednesdayPool_2"
&nbsp; PoolType = Backup
&nbsp; Recycle = yes
&nbsp; AutoPrune = yes
&nbsp; VolumeRetention = 13 days
&nbsp; VolumeUseDuration = 23 hours
&nbsp; MaximumVolumes = 1
&nbsp; LabelFormat = ""
&nbsp; RecycleCurrentVolume = yes
&#125;

# Definition of Thursday Pools

Pool &#123;
&nbsp; Name = "ThursdayPool_1"
&nbsp; PoolType = Backup
&nbsp; Recycle = yes
&nbsp; AutoPrune = yes
&nbsp; VolumeRetention = 13 days
&nbsp; VolumeUseDuration = 23 hours
&nbsp; MaximumVolumes = 1
&nbsp; LabelFormat = ""
&nbsp; RecycleCurrentVolume = yes
&#125;

Pool &#123;
&nbsp; Name = "ThursdayPool_2"
&nbsp; PoolType = Backup
&nbsp; Recycle = yes
&nbsp; AutoPrune = yes
&nbsp; VolumeRetention = 13 days
&nbsp; VolumeUseDuration = 23 hours
&nbsp; MaximumVolumes = 1
&nbsp; LabelFormat = ""
&nbsp; RecycleCurrentVolume = yes
&#125;

# Definition of Friday Pools

Pool &#123;
&nbsp; Name = "FridayPool_1"
&nbsp; PoolType = Backup
&nbsp; Recycle = yes
&nbsp; AutoPrune = yes
&nbsp; VolumeRetention = 13 days
&nbsp; VolumeUseDuration = 23 hours
&nbsp; MaximumVolumes = 1
&nbsp; LabelFormat = ""
&nbsp; RecycleCurrentVolume = yes
&#125;

Pool &#123;
&nbsp; Name = "FridayPool_2"
&nbsp; PoolType = Backup
&nbsp; Recycle = yes
&nbsp; AutoPrune = yes
&nbsp; VolumeRetention = 13 days
&nbsp; VolumeUseDuration = 23 hours
&nbsp; MaximumVolumes = 1
&nbsp; LabelFormat = ""
&nbsp; RecycleCurrentVolume = yes
&#125;

# CCS Job Definitions

# Definition of Monday Week 1 Jobs

Job &#123;
&nbsp; Name = "Monday_File_1"
&nbsp; Type = "Backup"
&nbsp; Level = "Full"
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "ccs_files"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "MondayPool_1"
&nbsp; Priority = "10"
&nbsp; Schedule = "MondayFile_1"
&nbsp; Write Bootstrap = "/var/lib/bacula/%c.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

Job &#123;
&nbsp; Name = "Monday_Cat_1"
&nbsp; Type = "Backup"
&nbsp; Level = Full
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "Catalog"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "MondayPool_1"
&nbsp; Priority = "11"
&nbsp; RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog" # 
This creates an ASCII copy of the catalog
&nbsp; RunAfterJob&nbsp; = "/etc/bacula/scripts/delete_catalog_backup" # This 
deletes the copy of the catalog
&nbsp; Schedule = "MondayCat_1"
&nbsp; Write Bootstrap = "/var/lib/bacula/%n.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

# Definition of Monday Week 2 Jobs

Job &#123;
&nbsp; Name = "Monday_File_2"
&nbsp; Type = "Backup"
&nbsp; Level = "Full"
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "ccs_files"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "MondayPool_2"
&nbsp; Priority = "10"
&nbsp; Schedule = "MondayFile_2"
&nbsp; Write Bootstrap = "/var/lib/bacula/%c.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

Job &#123;
&nbsp; Name = "Monday_Cat_2"
&nbsp; Type = "Backup"
&nbsp; Level = Full
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "Catalog"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "MondayPool_2"
&nbsp; Priority = "11"
&nbsp; RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog" # 
This creates an ASCII copy of the catalog
&nbsp; RunAfterJob&nbsp; = "/etc/bacula/scripts/delete_catalog_backup" # This 
deletes the copy of the catalog
&nbsp; Schedule = "MondayCat_2"
&nbsp; Write Bootstrap = "/var/lib/bacula/%n.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

# Definition of Tuesday Week 1 Jobs

Job &#123;
&nbsp; Name = "Tuesday_File_1"
&nbsp; Type = "Backup"
&nbsp; Level = "Full"
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "ccs_files"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "TuesdayPool_1"
&nbsp; Priority = "10"
&nbsp; Schedule = "TuesdayFile_1"
&nbsp; Write Bootstrap = "/var/lib/bacula/%c.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

Job &#123;
&nbsp; Name = "Tuesday_Cat_1"
&nbsp; Type = "Backup"
&nbsp; Level = Full
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "Catalog"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "TuesdayPool_1"
&nbsp; Priority = "11"
&nbsp; RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog" # 
This creates an ASCII copy of the catalog
&nbsp; RunAfterJob&nbsp; = "/etc/bacula/scripts/delete_catalog_backup" # This 
deletes the copy of the catalog
&nbsp; Schedule = "TuesdayCat_1"
&nbsp; Write Bootstrap = "/var/lib/bacula/%n.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

# Definition of Tuesday Week 2 Jobs

Job &#123;
&nbsp; Name = "Tuesday_File_2"
&nbsp; Type = "Backup"
&nbsp; Level = "Full"
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "ccs_files"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "TuesdayPool_2"
&nbsp; Priority = "10"
&nbsp; Schedule = "TuesdayFile_2"
&nbsp; Write Bootstrap = "/var/lib/bacula/%c.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

Job &#123;
&nbsp; Name = "Tuesday_Cat_2"
&nbsp; Type = "Backup"
&nbsp; Level = Full
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "Catalog"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "TuesdayPool_2"
&nbsp; Priority = "11"
&nbsp; RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog" # 
This creates an ASCII copy of the catalog
&nbsp; RunAfterJob&nbsp; = "/etc/bacula/scripts/delete_catalog_backup" # This 
deletes the copy of the catalog
&nbsp; Schedule = "TuesdayCat_2"
&nbsp; Write Bootstrap = "/var/lib/bacula/%n.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

# Definition of Wednesday Week 1 Jobs

Job &#123;
&nbsp; Name = "Wednesday_File_1"
&nbsp; Type = "Backup"
&nbsp; Level = "Full"
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "ccs_files"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "WednesdayPool_1"
&nbsp; Priority = "10"
&nbsp; Schedule = "WednesdayFile_1"
&nbsp; Write Bootstrap = "/var/lib/bacula/%c.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

Job &#123;
&nbsp; Name = "Wednesday_Cat_1"
&nbsp; Type = "Backup"
&nbsp; Level = Full
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "Catalog"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "WednesdayPool_1"
&nbsp; Priority = "11"
&nbsp; RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog" # 
This creates an ASCII copy of the catalog
&nbsp; RunAfterJob&nbsp; = "/etc/bacula/scripts/delete_catalog_backup" # This 
deletes the copy of the catalog
&nbsp; Schedule = "WednesdayCat_1"
&nbsp; Write Bootstrap = "/var/lib/bacula/%n.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

# Definition of Wednesday Week 2 Jobs

Job &#123;
&nbsp; Name = "Wednesday_File_2"
&nbsp; Type = "Backup"
&nbsp; Level = "Full"
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "ccs_files"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "WednesdayPool_2"
&nbsp; Priority = "10"
&nbsp; Schedule = "WednesdayFile_2"
&nbsp; Write Bootstrap = "/var/lib/bacula/%c.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

Job &#123;
&nbsp; Name = "Wednesday_Cat_2"
&nbsp; Type = "Backup"
&nbsp; Level = Full
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "Catalog"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "WednesdayPool_2"
&nbsp; Priority = "11"
&nbsp; RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog" # 
This creates an ASCII copy of the catalog
&nbsp; RunAfterJob&nbsp; = "/etc/bacula/scripts/delete_catalog_backup" # This 
deletes the copy of the catalog
&nbsp; Schedule = "WednesdayCat_2"
&nbsp; Write Bootstrap = "/var/lib/bacula/%n.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

# Definition of Thursday Week 1 Jobs

Job &#123;
&nbsp; Name = "Thursday_File_1"
&nbsp; Type = "Backup"
&nbsp; Level = "Full"
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "ccs_files"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "ThursdayPool_1"
&nbsp; Priority = "10"
&nbsp; Schedule = "ThursdayFile_1"
&nbsp; Write Bootstrap = "/var/lib/bacula/%c.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

Job &#123;
&nbsp; Name = "Thursday_Cat_1"
&nbsp; Type = "Backup"
&nbsp; Level = Full
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "Catalog"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "ThursdayPool_1"
&nbsp; Priority = "11"
&nbsp; RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog" # 
This creates an ASCII copy of the catalog
&nbsp; RunAfterJob&nbsp; = "/etc/bacula/scripts/delete_catalog_backup" # This 
deletes the copy of the catalog
&nbsp; Schedule = "ThursdayCat_1"
&nbsp; Write Bootstrap = "/var/lib/bacula/%n.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

# Definition of Thursday Week 2 Jobs

Job &#123;
&nbsp; Name = "Thursday_File_2"
&nbsp; Type = "Backup"
&nbsp; Level = "Full"
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "ccs_files"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "ThursdayPool_2"
&nbsp; Priority = "10"
&nbsp; Schedule = "ThursdayFile_2"
&nbsp; Write Bootstrap = "/var/lib/bacula/%c.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

Job &#123;
&nbsp; Name = "Thursday_Cat_2"
&nbsp; Type = "Backup"
&nbsp; Level = Full
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "Catalog"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "ThursdayPool_2"
&nbsp; Priority = "11"
&nbsp; RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog" # 
This creates an ASCII copy of the catalog
&nbsp; RunAfterJob&nbsp; = "/etc/bacula/scripts/delete_catalog_backup" # This 
deletes the copy of the catalog
&nbsp; Schedule = "ThursdayCat_2"
&nbsp; Write Bootstrap = "/var/lib/bacula/%n.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

# Definition of Friday Week 1 Jobs

Job &#123;
&nbsp; Name = "Friday_File_1"
&nbsp; Type = "Backup"
&nbsp; Level = "Full"
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "ccs_files"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "FridayPool_1"
&nbsp; Priority = "10"
&nbsp; Schedule = "FridayFile_1"
&nbsp; Write Bootstrap = "/var/lib/bacula/%c.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

Job &#123;
&nbsp; Name = "Friday_Cat_1"
&nbsp; Type = "Backup"
&nbsp; Level = Full
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "Catalog"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "FridayPool_1"
&nbsp; Priority = "11"
&nbsp; RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog" # 
This creates an ASCII copy of the catalog
&nbsp; RunAfterJob&nbsp; = "/etc/bacula/scripts/delete_catalog_backup" # This 
deletes the copy of the catalog
&nbsp; Schedule = "FridayCat_1"
&nbsp; Write Bootstrap = "/var/lib/bacula/%n.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

# Definition of Friday Week 2 Jobs

Job &#123;
&nbsp; Name = "Friday_File_2"
&nbsp; Type = "Backup"
&nbsp; Level = "Full"
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "ccs_files"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = FridayPool_2
&nbsp; Priority = "10"
&nbsp; Schedule = "FridayFile_2"
&nbsp; Write Bootstrap = "/var/lib/bacula/%c.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

Job &#123;
&nbsp; Name = "Friday_Cat_2"
&nbsp; Type = "Backup"
&nbsp; Level = Full
&nbsp; Client = "ccsaber-linux-fd"
&nbsp; FileSet = "Catalog"
&nbsp; Storage = "Tape"
&nbsp; Messages = "Standard"
&nbsp; Pool = "FridayPool_2"
&nbsp; Priority = "11"
&nbsp; RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog" # 
This creates an ASCII copy of the catalog
&nbsp; RunAfterJob&nbsp; = "/etc/bacula/scripts/delete_catalog_backup" # This 
deletes the copy of the catalog
&nbsp; Schedule = "FridayCat_2"
&nbsp; Write Bootstrap = "/var/lib/bacula/%n.bsr"
&nbsp; MaxStartDelay = 22 hours
&#125;

# Definition of Monday Week 1 Schedules

Schedule &#123;
&nbsp; Name = "MondayFile_1"
&nbsp; Run = Full Pool = MondayPool_1 1st mon at 19&#58;00
&nbsp; Run = Full Pool = MondayPool_1 3rd mon at 19&#58;00
&nbsp; Run = Full Pool = MondayPool_1 5th mon at 19&#58;00
&#125;

Schedule &#123;
&nbsp; Name = "MondayCat_1"
&nbsp; Run = Full Pool = MondayPool_1 1st mon at 19&#58;30
&nbsp; Run = Full Pool = MondayPool_1 3rd mon at 19&#58;30
&nbsp; Run = Full Pool = MondayPool_1 5th mon at 19&#58;30
&#125;

# Definition of Monday Week 2 Schedules

Schedule &#123;
&nbsp; Name = "MondayFile_2"
&nbsp; Run = Full Pool = MondayPool_2 2nd mon at 19&#58;00
&nbsp; Run = Full Pool = MondayPool_2 4th mon at 19&#58;00
&#125;

Schedule &#123;
&nbsp; Name = "MondayCat_2"
&nbsp; Run = Full Pool = MondayPool_2 2nd mon at 19&#58;30
&nbsp; Run = Full Pool = MondayPool_2 4th mon at 19&#58;30
&#125;

# Definition of Tuesday Week 1 Schedules

Schedule &#123;
&nbsp; Name = "TuesdayFile_1"
&nbsp; Run = Full Pool = TuesdayPool_1 1st tue at 19&#58;00
&nbsp; Run = Full Pool = TuesdayPool_1 3rd tue at 19&#58;00
&nbsp; Run = Full Pool = TuesdayPool_1 5th tue at 19&#58;00
&#125;

Schedule &#123;
&nbsp; Name = "TuesdayCat_1"
&nbsp; Run = Full Pool = TuesdayPool_1 1st tue at 19&#58;30
&nbsp; Run = Full Pool = TuesdayPool_1 3rd tue at 19&#58;30
&nbsp; Run = Full Pool = TuesdayPool_1 5th tue at 19&#58;30
&#125;

# Definition of Tuesday Week 2 Schedules

Schedule &#123;
&nbsp; Name = "TuesdayFile_2"
&nbsp; Run = Full Pool = TuesdayPool_2 2nd tue at 19&#58;00
&nbsp; Run = Full Pool = TuesdayPool_2 4th tue at 19&#58;00
&#125;

Schedule &#123;
&nbsp; Name = "TuesdayCat_2"
&nbsp; Run = Full Pool = TuesdayPool_2 2nd tue at 19&#58;30
&nbsp; Run = Full Pool = TuesdayPool_2 4th tue at 19&#58;30
&#125;

# Definition of Wednesday Week 1 Schedules

Schedule &#123;
&nbsp; Name = "WednesdayFile_1"
&nbsp; Run = Full Pool = WednesdayPool_1 1st wed at 19&#58;00
&nbsp; Run = Full Pool = WednesdayPool_1 3rd wed at 19&#58;00
&nbsp; Run = Full Pool = WednesdayPool_1 5th wed at 19&#58;00
&#125;

Schedule &#123;
&nbsp; Name = "WednesdayCat_1"
&nbsp; Run = Full Pool = WednesdayPool_1 1st wed at 19&#58;30
&nbsp; Run = Full Pool = WednesdayPool_1 3rd wed at 19&#58;30
&nbsp; Run = Full Pool = WednesdayPool_1 5th wed at 19&#58;30
&#125;

# Definition of Wednesday Week 2 Schedules

Schedule &#123;
&nbsp; Name = "WednesdayFile_2"
&nbsp; Run = Full Pool = WednesdayPool_2 2nd wed at 19&#58;00
&nbsp; Run = Full Pool = WednesdayPool_2 4th wed at 19&#58;00
&#125;

Schedule &#123;
&nbsp; Name = "WednesdayCat_2"
&nbsp; Run = Full Pool = WednesdayPool_2 2nd wed at 19&#58;30
&nbsp; Run = Full Pool = WednesdayPool_2 4th wed at 19&#58;30
&#125;

# Definition of Thursday Week 1 Schedules

Schedule &#123;
&nbsp; Name = "ThursdayFile_1"
&nbsp; Run = Full Pool = ThursdayPool_1 1st thu at 19&#58;00
&nbsp; Run = Full Pool = ThursdayPool_1 3rd thu at 19&#58;00
&nbsp; Run = Full Pool = ThursdayPool_1 5th thu at 19&#58;00
&#125;

Schedule &#123;
&nbsp; Name = "ThursdayCat_1"
&nbsp; Run = Full Pool = ThursdayPool_1 1st thu at 19&#58;30
&nbsp; Run = Full Pool = ThursdayPool_1 3rd thu at 19&#58;30
&nbsp; Run = Full Pool = ThursdayPool_1 5th thu at 19&#58;30
&#125;

# Definition of Thursday Week 2 Schedules

Schedule &#123;
&nbsp; Name = "ThursdayFile_2"
&nbsp; Run = Full Pool = ThursdayPool_2 2nd thu at 19&#58;00
&nbsp; Run = Full Pool = ThursdayPool_2 4th thu at 19&#58;00
&#125;

Schedule &#123;
&nbsp; Name = "ThursdayCat_2"
&nbsp; Run = Full Pool = ThursdayPool_2 2nd thu at 19&#58;30
&nbsp; Run = Full Pool = ThursdayPool_2 4th thu at 19&#58;30
&#125;

# Definition of Friday Week 1 Schedules

Schedule &#123;
&nbsp; Name = "FridayFile_1"
&nbsp; Run = Full Pool = FridayPool_1 1st fri at 19&#58;00
&nbsp; Run = Full Pool = FridayPool_1 3rd fri at 19&#58;00
&nbsp; Run = Full Pool = FridayPool_1 5th fri at 19&#58;00
&#125;

Schedule &#123;
&nbsp; Name = "FridayCat_1"
&nbsp; Run = Full Pool = FridayPool_1 1st fri at 19&#58;30
&nbsp; Run = Full Pool = FridayPool_1 3rd fri at 19&#58;30
&nbsp; Run = Full Pool = FridayPool_1 5th fri at 19&#58;30
&#125;

# Definition of Friday Week 2 Schedules

Schedule &#123;
&nbsp; Name = "FridayFile_2"
&nbsp; Run = Full Pool = FridayPool_2 2nd fri at 19&#58;00
&nbsp; Run = Full Pool = FridayPool_2 4th fri at 19&#58;00
&#125;

Schedule &#123;
&nbsp; Name = "FridayCat_2"
&nbsp; Run = Full Pool = FridayPool_2 2nd fri at 19&#58;30
&nbsp; Run = Full Pool = FridayPool_2 4th fri at 19&#58;30
&#125;


I have looked and I can't see the wood for the trees, so any help will be 
really great.

Cheers

+----------------------------------------------------------------------
|This was sent by tech-t...@telem.co.uk via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+----------------------------------------------------------------------



------------------------------------------------------------------------------
Oracle to DB2 Conversion Guide: Learn learn about native support for PL/SQL,
new data types, scalar functions, improved concurrency, built-in packages, 
OCI, SQL*Plus, data movement tools, best practices and more.
http://p.sf.net/sfu/oracle-sfdev2dev 
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to