On Thu, 25 Aug 2005, j2 wrote:
With the below fileset, I thought all gzipped logs would be excluded from my backup, but as shown at the bottom of the post, they are not?[....] regexfile = "/var/log/.*\.[0-9]\.gz"
My guess (and it's only a guess) is that '.*' won't match a '/'; you'll need to specify the depth, e.g.,
regexfile = "/var/log/.*\.[0-9]\.gz" regexfile = "/var/log/.*/.*\.[0-9]\.gz" -- Paul Heinlein <> [EMAIL PROTECTED] <> www.madboa.com ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ Bacula-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/bacula-users
