-- 

This is what you said Doug Penny
> I am new to bacula, but have been very impressed with the flexibility
> it provides.  I currently have bacula backing up 9 different servers
> to disk.  However everything is going to one disk.  Is there anyway to
> have all of my full backups go to one disk and all differentials go to
> another disk?  I know I can specify which pool different backup levels
> use, but I can't figure out how (if possible) to specify which disk a
> certain pool will use.  Thank you for your help.
>
> Sincerely,
> Doug Penny

I just created multiple entries in the storage director configuration:

Device {
  Name = SD_FULL
  Media Type = File
  Archive Device = /BACKUPS/Full
  LabelMedia = yes;                   # lets Bacula label unlabeled media
  Random Access = Yes;
  AutomaticMount = yes;               # when device opened, read it
  RemovableMedia = no;
  AlwaysOpen = no;
}

Device {
  Name = SD_INCR
  Media Type = File
  Archive Device = /BACKUPS/Incremental
  LabelMedia = yes;                   # lets Bacula label unlabeled media
  Random Access = Yes;
  AutomaticMount = yes;               # when device opened, read it
  RemovableMedia = no;
  AlwaysOpen = no;
}

each of those mount points can be on different disks.

I of course have my Storage{} and Pool{} options configured in the
director configuration to utilize the Device {} created in the storage
director.

Scott


_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to