From 919754bd0008865ba52460be93f5799c2045a8b1 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 28 Dec 2022 20:00:07 -0300 Subject: Fix: exclude /var/lib/docker/overlay2 from backups --- manifests/params.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", ] -- cgit v1.2.3