aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2022-12-28 20:00:07 -0300
committerSilvio Rhatto <rhatto@riseup.net>2022-12-28 20:00:07 -0300
commit919754bd0008865ba52460be93f5799c2045a8b1 (patch)
treee73e892880e9d609de3873a73d5bb7470bc245d3
parentd5a26d4e63f9c2cf4c995fcf12679874250ee9dd (diff)
downloadpuppet-backup-919754bd0008865ba52460be93f5799c2045a8b1.tar.gz
puppet-backup-919754bd0008865ba52460be93f5799c2045a8b1.tar.bz2
Fix: exclude /var/lib/docker/overlay2 from backups
-rw-r--r--manifests/params.pp2
1 files changed, 1 insertions, 1 deletions
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", ]