From: Silvio Rhatto Date: Wed, 28 Dec 2022 23:00:07 +0000 (-0300) Subject: Fix: exclude /var/lib/docker/overlay2 from backups X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=919754bd0008865ba52460be93f5799c2045a8b1;p=puppet-backup.git Fix: exclude /var/lib/docker/overlay2 from backups --- diff --git a/manifests/params.pp b/manifests/params.pp index 5c25b1d..a854055 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -7,7 +7,7 @@ class backup::params { # for data that's going to be encrypted and signed $include_unencrypted = [ "/etc", "/var", "/home", "/root" ] - $exclude_unencrypted = [ "$backupdir_remote", "$backupdir/duplicity", "$backupdir/borg", "$backupdir/restore", "/var/cache", "/var/log", "/var/vservers", "/var/chroot", "/root/.cache", "/var/lib/dpkg", "/var/lib/apt", "/var/lib/aptitude/", "/var/sites/backups", "/var/data/crypt", "/var/data/backups", "/var/data/cache", "/var/lib/lxcfs" ] + $exclude_unencrypted = [ "$backupdir_remote", "$backupdir/duplicity", "$backupdir/borg", "$backupdir/restore", "/var/cache", "/var/log", "/var/vservers", "/var/chroot", "/root/.cache", "/var/lib/dpkg", "/var/lib/apt", "/var/lib/aptitude/", "/var/sites/backups", "/var/data/crypt", "/var/data/backups", "/var/data/cache", "/var/lib/lxcfs", "/var/lib/docker/overlay2", ] # for data that were previously encrypted and signed $include_encrypted = [ "$backupdir/duplicity", ]