Hello,

I'm using 2 options resources inside an Include in the Fileset: one for general 
options and the other for exclude files. Bacula reads the Fileset without 
problems and when it shows the job it's also OK.

  --> FileSet: name=XXXFileset
      O MZ6
      N
      O ei
      WD [A-Z]:/WINNT/Temp
        ...

The problem is that the compression only works if it appears in the Options 
resource in second position. If the attribute goes in the first Options 
resource 
bacula doesn't do any compression.

Anyone else is also using multiple options resources inside includes? Do you 
have any trouble with it? 


Bacula VersiĆ³n: 2.4.4

Not Working (job runs but without compression):
FileSet {
        Name = "XXXFileset"
        Enable VSS = yes

        Include {
                Options {
                        signature = MD5
                        compression=GZIP
                }

                Options {
                        Exclude = yes
                        IgnoreCase = yes

                        # Temporary directories & files
                        WildDir = "[A-Z]:/WINNT/Temp"
                        #...
                }

                File = "C:/"
        }
}

Working (job runs with compression) :
FileSet {
        Name = "XXXFileset"
        Enable VSS = yes

        Include {
                Options {
                        Exclude = yes
                        IgnoreCase = yes

                        # Temporary directories & files
                        WildDir = "[A-Z]:/WINNT/Temp"
                        #...
                }

                Options {
                        signature = MD5
                        compression=GZIP
                }

                File = "C:/"
        }
}

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

Reply via email to