>>>>> On Tue, 29 Mar 2005 17:46:45 +0300, viktorija <[EMAIL PROTECTED]> said:

  V> now am reading manual and i have one question about @.
  V> Is it possible to use @ in the following way:
  V> Name = "news"
  V>         Include {
  V>                 Options {
  V>                          compression=GZIP
  V>                          wild = @exclude.list 
  V>                          exclude = yes
  V>                         }
  V>                 File = "D:/My Documents/work" 
  V>                 File = "D:/My Documents/temp" 
  V>                 }
  V> where exclude.list is following:
  V> wild = *.mp3
  V> wild = *.avi
  V> wild = *.mpg
  V> wild = *.mpeg
  V> wild = *.wmv
  V> wild = *.wma
  V> wild = *.wvx
  V> wild = *.wax
  V> wild = *.asf
  V> wild = *.asx
  V> wild = *.wms
  V> wild = *.wmz
  V> wild = *.wmd
  V> wild = *.mlv
  V> wild = *.mid
  V> wild = *.mod
  V> wild = *.mov
  V> wild = *.mp1
  V> wild = *.mp2
  V> wild = *.mpa
  V> wild = *.mpe


  V> Or @ is only for File?

The @ directive works anywhere, but it simply inserts the named file as if it
was part of the main file, so to make the above work you need to drop the
'wild =' from the options:

Name = "news"
        Include {
                Options {
                         compression=GZIP
                         @exclude.list 
                         exclude = yes
                        }
                File = "D:/My Documents/work" 
                File = "D:/My Documents/temp" 
                }

__Martin


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to