[Bacula-users] Can't figure out exclude .cache config

2014-10-03 Thread bdam
Hi Heitor 

Ahh that works! Thanks you.
Just for completeness, how would I say Exclude all folders which start with . 
 so it gets .cache, .config etc, AS WELL as ignore all core dumps which are 
files in the format core.*.

+--
|This was sent by bill.dam...@yahoo.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Can't figure out exclude .cache config

2014-10-03 Thread Heitor Faria
You're welcome Bill.

Options {
Wilddir = */.*# Select all folders which start with . 
WildFile = *core.*   # Select all files that have core. in the middle
of its name
Exclude = yes # Exclude the selection above
}


On Fri, Oct 3, 2014 at 7:26 AM, bdam bacula-fo...@backupcentral.com wrote:

 Hi Heitor

 Ahh that works! Thanks you.
 Just for completeness, how would I say Exclude all folders which start
 with .  so it gets .cache, .config etc, AS WELL as ignore all core dumps
 which are files in the format core.*.

 +--
 |This was sent by bill.dam...@yahoo.com via Backup Central.
 |Forward SPAM to ab...@backupcentral.com.
 +--




 --
 Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
 Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
 Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
 Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer

 http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
 ___
 Bacula-users mailing list
 Bacula-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/bacula-users




-- 

Heitor Medrado de Faria
Precisa de treinamento Bacula? 15% de desconto no curso on-line pelo site:
bacula.com.br http://www.bacula.com.br/?p=2394
Need Bacula training? 10% discount coupon code at Udemy: bacula-users
https://www.udemy.com/bacula-backup-software/?couponCode=bacula-users
+55 61 2021-8260
+55 61 8268-4220
Site: www.bacula.com.br
Facebook: heitor.faria http://www.facebook.com/heitor.faria
Gtalk: heitorfa...@gmail.com

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Can't figure out exclude .cache config

2014-10-02 Thread bdam
Hi Heitor, sincere thanks for tyou help. I just made those changes, restarted 
baula a,d inspecting the backup with restore, 5, then nav to a users .cache dir 
showed it had still backed up .cache. Here is the full config I used, hope i 
got it right:



FileSet {
  Name = FileSet-Home
  Include {
Options {
  signature = MD5
  WildFile = core.*
  Exclude = yes
}
File = /home
  }
  Exclude {
File = /.cache
File = /.pulse
  }
}

+--
|This was sent by bill.dam...@yahoo.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Can't figure out exclude .cache config

2014-10-02 Thread John Drescher
On Thu, Oct 2, 2014 at 2:38 PM, bdam bacula-fo...@backupcentral.com wrote:
 Hi Heitor, sincere thanks for tyou help. I just made those changes, restarted 
 baula a,d inspecting the backup with restore, 5, then nav to a users .cache 
 dir showed it had still backed up .cache. Here is the full config I used, 
 hope i got it right:



I think your fileset should be:

 FileSet {
   Name = FileSet-Home
   Include {
 Options {
   signature = MD5
   WildFile = core.*
   Exclude = yes
 }
   }
   Exclude {
 File = /.cache
 File = /.pulse
   }
  File = /home
 }

John

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Can't figure out exclude .cache config

2014-10-02 Thread Heitor Faria
Bill,

This modification does not affect prior done backups. Only the next ones
will not have the core.* files backuped.
You can always test your fileset against the real data list with the
estimate listing bconsole command.

Regards,

On Thu, Oct 2, 2014 at 3:38 PM, bdam bacula-fo...@backupcentral.com wrote:

 Hi Heitor, sincere thanks for tyou help. I just made those changes,
 restarted baula a,d inspecting the backup with restore, 5, then nav to a
 users .cache dir showed it had still backed up .cache. Here is the full
 config I used, hope i got it right:



 FileSet {
   Name = FileSet-Home
   Include {
 Options {
   signature = MD5
   WildFile = core.*
   Exclude = yes
 }
 File = /home
   }
   Exclude {
 File = /.cache
 File = /.pulse
   }
 }

 +--
 |This was sent by bill.dam...@yahoo.com via Backup Central.
 |Forward SPAM to ab...@backupcentral.com.
 +--




 --
 Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
 Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
 Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
 Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer

 http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
 ___
 Bacula-users mailing list
 Bacula-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/bacula-users




-- 

Heitor Medrado de Faria
Precisa de treinamento Bacula? 15% de desconto no curso on-line pelo site:
bacula.com.br http://www.bacula.com.br/?p=2394
Need Bacula training? 10% discount coupon code at Udemy: bacula-users
https://www.udemy.com/bacula-backup-software/?couponCode=bacula-users
+55 61 2021-8260
+55 61 8268-4220
Site: www.bacula.com.br
Facebook: heitor.faria http://www.facebook.com/heitor.faria
Gtalk: heitorfa...@gmail.com

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Can't figure out exclude .cache config

2014-10-02 Thread bdam
@dresherjm It says /home is invalid in that position
@heitor Sorry I didn't make it clear, but of course I ran a new job and tested 
that when done. By the way how can estimate tell me it won't back up the core 
and .cache files - do I just compare its output with du or something? Also, I 
actuially watch the job by repeatedly doing status all, and I see it ploughing 
through the .cache folder with Processing file I thought that would not 
show the .cache folder there if I'd got it right - is that correct? 

Thanks for everyones help so far!

+--
|This was sent by bill.dam...@yahoo.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Can't figure out exclude .cache config

2014-10-02 Thread Heitor Faria

 @heitor Sorry I didn't make it clear, but of course I ran a new job and
 tested that when done. By the way how can estimate tell me it won't back up
 the core and .cache files - do I just compare its output with du or
 something? Also, I actuially watch the job by repeatedly doing status all,
 and I see it ploughing through the .cache folder with Processing file
 I thought that would not show the .cache folder there if I'd got it right -
 is that correct?


Bill: sorry me. Is .cache a folder?
So the option is: WildDir, not WildFile.

*wilddir=string*Specifies a wild-card string to be applied to directory
names only. No filenames will be matched by this directive. Note, if
*Exclude* is not enabled, the wild-card will select directories to be
included. If *Exclude=yes* is specified, the wild-card will select which
directories are to be excluded. Multiple wild-card directives may be
specified, and they will be applied in turn until the first one that
matches. Note, if you exclude a directory, no files or directories below it
will be matched.

It is recommended to enclose the string in double quotes.

You may want to test your expressions prior to running your backup by using
the bwild program. Please see the Utilitiesbwild chapter of this manual for
more. You can also test your full FileSet definition by using the
estimateestimate command in the Console chapter of this manual. An example
of excluding with the WildDir option on Win32 machines is presented below.



 Thanks for everyones help so far!

 +--
 |This was sent by bill.dam...@yahoo.com via Backup Central.
 |Forward SPAM to ab...@backupcentral.com.
 +--




 --
 Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
 Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
 Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
 Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer

 http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
 ___
 Bacula-users mailing list
 Bacula-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/bacula-users




-- 

Heitor Medrado de Faria
Precisa de treinamento Bacula? 15% de desconto no curso on-line pelo site:
bacula.com.br http://www.bacula.com.br/?p=2394
Need Bacula training? 10% discount coupon code at Udemy: bacula-users
https://www.udemy.com/bacula-backup-software/?couponCode=bacula-users
+55 61 2021-8260
+55 61 8268-4220
Site: www.bacula.com.br
Facebook: heitor.faria http://www.facebook.com/heitor.faria
Gtalk: heitorfa...@gmail.com

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Can't figure out exclude .cache config

2014-10-02 Thread bdam
Bill: sorry me. Is .cache a folder? 

Yes its a folder

So the option is: WildDir, not WildFile.

But WildFile refers to core.* !! Are you sure that's what you meant?

+--
|This was sent by bill.dam...@yahoo.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Can't figure out exclude .cache config

2014-10-02 Thread Heitor Faria
This way: WildDir = *.cache*


On Thu, Oct 2, 2014 at 6:47 PM, bdam bacula-fo...@backupcentral.com wrote:

 Bill: sorry me. Is .cache a folder?

 Yes its a folder

 So the option is: WildDir, not WildFile.

 But WildFile refers to core.* !! Are you sure that's what you meant?

 +--
 |This was sent by bill.dam...@yahoo.com via Backup Central.
 |Forward SPAM to ab...@backupcentral.com.
 +--




 --
 Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
 Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
 Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
 Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer

 http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
 ___
 Bacula-users mailing list
 Bacula-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/bacula-users




-- 

Heitor Medrado de Faria
Precisa de treinamento Bacula? 15% de desconto no curso on-line pelo site:
bacula.com.br http://www.bacula.com.br/?p=2394
Need Bacula training? 10% discount coupon code at Udemy: bacula-users
https://www.udemy.com/bacula-backup-software/?couponCode=bacula-users
+55 61 2021-8260
+55 61 8268-4220
Site: www.bacula.com.br
Facebook: heitor.faria http://www.facebook.com/heitor.faria
Gtalk: heitorfa...@gmail.com

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] Can't figure out exclude .cache config

2014-10-01 Thread bdam
All I want to do is back up the users home folders but not their chrome cache 
or any core dumps. I used the setting below which I thought would do it but its 
backing up everything. Anyone spot whats wrong please?

FileSet {
  Name = FileSet-Home
  Include {
Options {
  signature = MD5
}
File = /home
  }
  Exclude {
File = .cache
File = .pulse
File = core.*
  }
}

+--
|This was sent by bill.dam...@yahoo.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--



--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


Re: [Bacula-users] Can't figure out exclude .cache config

2014-10-01 Thread Heitor Faria
Hey Mr. Bill,

All I want to do is back up the users home folders but not their chrome
cache or any core dumps. I used the setting below which I thought would do
it but its backing up everything. Anyone spot whats wrong please?

FileSet {
  Name = FileSet-Home
  Include {
Options {
  signature = MD5
}
File = /home
  }
  Exclude {
File = .cache
File = .pulse
File = core.*
  }
}

The exclude section does not accept wildcards. You should remove this line
and add the following to the options (e. g.):

 Options {
 WildFile = core.*
 Exclude = yes
}

After applying changes restarting director (or reload) you can test the new
fileset with the estimate listing command.

Regards,

-- 

Heitor Medrado de Faria | Need Bacula training? 10% discount coupon code at
Udemy: bacula-users
https://www.udemy.com/bacula-backup-software/?couponCode=bacula-users
+55 61 2021-8260
+55 61 8268-4220
Site: www.bacula.com.br
Facebook: heitor.faria http://www.facebook.com/heitor.faria
Gtalk: heitorfa...@gmail.com

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users