Greetings.
Backups of lockbox01 are unfortunately backing up .snapshot directories and their contents. This pulls in a ton of stuff and makes backups take forever and contain things we don't want.
This one line change should hopefully make it exclude .snapshot dirs. (Apparently it needs a trailing / to search directory names).
+1s?
kevin -- diff --git a/modules/bacula5/templates/bacula-dir.conf.erb b/modules/bacula5/templates/bacula-dir.co index 9f5b547..d2b8b2d 100644 --- a/modules/bacula5/templates/bacula-dir.conf.erb +++ b/modules/bacula5/templates/bacula-dir.conf.erb @@ -453,7 +453,7 @@ FileSet { File = /dev File = /sys File = /.swap - File = .snapshot + File = .snapshot/ File = /mnt/fedora/app/fi-repo/rhel File = /var/tmp }
On Fri, 17 May 2013 10:36:21 -0600 Kevin Fenzi kevin@scrye.com wrote:
Greetings.
Backups of lockbox01 are unfortunately backing up .snapshot directories and their contents. This pulls in a ton of stuff and makes backups take forever and contain things we don't want.
This one line change should hopefully make it exclude .snapshot dirs. (Apparently it needs a trailing / to search directory names).
+1s?
kevin
diff --git a/modules/bacula5/templates/bacula-dir.conf.erb b/modules/bacula5/templates/bacula-dir.co index 9f5b547..d2b8b2d 100644 --- a/modules/bacula5/templates/bacula-dir.conf.erb +++ b/modules/bacula5/templates/bacula-dir.conf.erb @@ -453,7 +453,7 @@ FileSet { File = /dev File = /sys File = /.swap
- File = .snapshot
- File = .snapshot/ File = /mnt/fedora/app/fi-repo/rhel File = /var/tmp }
oh hell yes
+1 -sv
On 17 May 2013 10:36, Kevin Fenzi kevin@scrye.com wrote:
Greetings.
Backups of lockbox01 are unfortunately backing up .snapshot directories and their contents. This pulls in a ton of stuff and makes backups take forever and contain things we don't want.
This one line change should hopefully make it exclude .snapshot dirs. (Apparently it needs a trailing / to search directory names).
+1s?
I think it needs to be wilddir = .snapshot/ for it to match any .snapshot it finds and not just one in /
On Fri, 17 May 2013 11:10:03 -0600 Stephen John Smoogen smooge@gmail.com wrote:
On 17 May 2013 10:36, Kevin Fenzi kevin@scrye.com wrote:
Greetings.
Backups of lockbox01 are unfortunately backing up .snapshot directories and their contents. This pulls in a ton of stuff and makes backups take forever and contain things we don't want.
This one line change should hopefully make it exclude .snapshot dirs. (Apparently it needs a trailing / to search directory names).
+1s?
I think it needs to be wilddir = .snapshot/ for it to match any .snapshot it finds and not just one in /
ok. Went with WildDir.
Thanks!
kevin
infrastructure@lists.fedoraproject.org