>>>>> On Mon, 24 Sep 2007 16:44:00 -0700, Elie Azar said:
> 
> Hi,
> 
> I'm kind of new to Bacula, and definitely to Vchanger, so please bear 
> with me.
> 
> I want to implement vchanger on a set of hard drives, with the idea that 
> I will have a pool of, let's say, 10 drives available for backup, and 
> where I do not have to specify a storage device for every job I define.

Assuming that all your disks will be online all the time, there may be a
simpler way to do this.  I think you can create a single storage device
pointing to a directory containing links to the volumes on each disk.

E.g. if your disk are mounted on

/mnt/disk1
/mnt/disk2
/mnt/disk3 etc

and each disk contains a single volume Vol1, Vol2, Vol3 etc then you can
create a directory

mkdir /bacula
ln -s /mnt/disk1/Vol1 /bacula/Vol1
ln -s /mnt/disk2/Vol2 /bacula/Vol2
ln -s /mnt/disk3/Vol3 /bacula/Vol3
(or just ln -s /mnt/disk*/Vol* /bacula)

and use

Archive Device = /bacula

in the config.

I've not tested it, but it might work.

__Martin

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to