aboutsummaryrefslogtreecommitdiff
path: root/manifests/params.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-08-20 11:43:16 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-08-20 11:43:16 -0300
commitd6a0fffb130417efbb083dd55b1bc1f18233d05b (patch)
tree3b42d641fc324a9871218ba720bc10a2ef622995 /manifests/params.pp
parent9afb297ee9ea87061b83fa17d4195946443ed80e (diff)
downloadpuppet-backup-d6a0fffb130417efbb083dd55b1bc1f18233d05b.tar.gz
puppet-backup-d6a0fffb130417efbb083dd55b1bc1f18233d05b.tar.bz2
Smaller param names
Diffstat (limited to 'manifests/params.pp')
-rw-r--r--manifests/params.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index dedb033..caeff04 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -5,12 +5,12 @@ class backup::params {
$backupdir_ensure = hiera('backup::dir::ensure', 'directory')
# for data that's going to be encrypted and signed
- $backup_include_unencrypted = [ "/etc", "/var", "/home", ]
- $backup_exclude_unencrypted = [ "$backupdir_remote", "$backupdir/duplicity", "$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", "/data/backups", "/data/cache" ]
+ $include_unencrypted = [ "/etc", "/var", "/home", ]
+ $exclude_unencrypted = [ "$backupdir_remote", "$backupdir/duplicity", "$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", "/data/backups", "/data/cache" ]
# for data that were previously encrypted and signed
- $backup_include_encrypted = [ "$backupdir/duplicity", ]
- $backup_exclude_encrypted = [ "$backupdir/duplicity/.ssh", ]
+ $include_encrypted = [ "$backupdir/duplicity", ]
+ $exclude_encrypted = [ "$backupdir/duplicity/.ssh", ]
# ensure the latest backup version
$backupninja_ensure_version = 'latest'