Bacula-users

[Bacula-users] include only certain wild files, bacula stilll backs up all files

2008-08-15 23:39:11
Subject: [Bacula-users] include only certain wild files, bacula stilll backs up all files
From: "Milwell H. Sia" <milwell AT milwell DOT com>
To: bacula-users AT lists.sourceforge DOT net
Date: Sat, 16 Aug 2008 11:33:15 +0800
I'm using Bacula 2.2.8 and Ubuntu 7.10, the client is windows xp.

I have to backup a really big workstation and one strategy i have come 
up with is to backup by letter.
for example, i'll make a fileset that backs up all directories in d: 
that starts with A or a.
So the fileset looks like:

FileSet{
 name = "fileset-A"
 include{
   options{
     compression = GZIP
     wild  = "d:/A*"
     wild  = "d:/a*"
   }
   File = "d:/"
 }
}

but it seems to be bacula still backs up  all files in d:

so I had to specify the fileset as follows:


FileSet{
 name = "fileset-A"
 include{
   options{
     compression = GZIP
     exclude = "yes"
     wild  = "d:/B*"
     wild  = "d:/b*"
     wild  = "d:/C*"
     wild  = "d:/c*"
     wild  = "d:/D*"
     wild  = "d:/d*"
     wild  = "d:/E*"
     wild  = "d:/e*"
     wild  = "d:/F*"
     wild  = "d:/f*"
     wild  = "d:/G*"
     wild  = "d:/g*"
     wild  = "d:/H*"
     wild  = "d:/h*"
     wild  = "d:/I*"
     wild  = "d:/i*"
     wild  = "d:/J*"
     wild  = "d:/j*"
     wild  = "d:/K*"
     wild  = "d:/k*"
     wild  = "d:/L*"
     wild  = "d:/l*"
     wild  = "d:/M*"
     wild  = "d:/m*"
     wild  = "d:/N*"
     wild  = "d:/n*"
     wild  = "d:/O*"
     wild  = "d:/o*"
     wild  = "d:/P*"
     wild  = "d:/p*"
     wild  = "d:/Q*"
     wild  = "d:/q*"
     wild  = "d:/R*"
     wild  = "d:/r*"
     wild  = "d:/S*"
     wild  = "d:/s*"
     wild  = "d:/T*"
     wild  = "d:/t*"
     wild  = "d:/U*"
     wild  = "d:/u*"
     wild  = "d:/V*"
     wild  = "d:/v*"
     wild  = "d:/W*"
     wild  = "d:/w*"
     wild  = "d:/X*"
     wild  = "d:/x*"
     wild  = "d:/Y*"
     wild  = "d:/y*"
     wild  = "d:/Z*"
     wild  = "d:/z*"
     wild  = "d:/0*"
     wild  = "d:/1*"
     wild  = "d:/2*"
     wild  = "d:/3*"
     wild  = "d:/4*"
     wild  = "d:/5*"
     wild  = "d:/6*"
     wild  = "d:/7*"
     wild  = "d:/8*"
     wild  = "d:/9*"

   }
   File = "d:/"
 }
}

is this a bug? is it fixed in 2.4.X?



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Bacula-users mailing list
Bacula-users AT lists.sourceforge DOT net
https://lists.sourceforge.net/lists/listinfo/bacula-users

<Prev in Thread] Current Thread [Next in Thread>