JP skrev:
> Hye,
> 
> I use bacula 1.38.7.
> 
> This is an example of a FileSet I use :
> 
> FileSet {
>    Name = "MacOsX"
>    Include {
>      Options {
>        signature = MD5
>        compression = GZIP
>        verify = s
>        hfsplussupport=yes
>      }
>      File = "/Users/"
>      File = "/Volumes/"
>    }
>    Exclude {
>      File = "swapfile*"
>      File = "*.mp3"
>      File = "*.cache"
>      File = "/Users/*/.Trash"
>      File = "/Volumes/Stockage"
>    }
> }
> 
> When I want to backup a mac o x client, /Volumes/ is not backed up (/ 
> Users/ is all right)
> 
> Why ? What's the problem ?

You need to either specify each volume in /Volumes, or, include onefs=no
in your Options section.

Another error I can see in your fileset is your use of wildcards in the
Exclude section. To exclude wildcards you need to add another Options
section to your Include section like this:

Options {
  wildfile=*.mp3
  wildfile=*.cache
  wilddir=.Trash
  wildfile=swapfile
  exclude=yes
}

see
http://bacula.org/rel-manual/Configuring_Director.html#SECTION000147000000000000000


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to