diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-03-23 13:08:34 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-03-23 13:08:34 -0300 |
commit | 7d4faf9178a7763f76ec83bf2fd39a59134f5a1d (patch) | |
tree | 7946e9cb5205b479abb28b0b19656791fa593246 /manifests | |
parent | d9e4598757f87f353b6ca6d411a71f2ea61f4f18 (diff) | |
download | puppet-backup-7d4faf9178a7763f76ec83bf2fd39a59134f5a1d.tar.gz puppet-backup-7d4faf9178a7763f76ec83bf2fd39a59134f5a1d.tar.bz2 |
Rollback
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 2ae0606..90882a9 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -37,8 +37,7 @@ $backupninja_ensure_version = 'latest' class backup( $when = hiera('backup::when', 'everyday at 01:00'), - $audit_rsync = hiera('backup::audit_rsync', True), - $remotes = hiera('backup::remotes', 'directory') + $audit_rsync = hiera('backup::audit_rsync', True) ) { include backupninja::server @@ -55,7 +54,7 @@ class backup( } file { "$backupdir_remote": - ensure => $remotes, + ensure => directory, owner => root, group => root, mode => 0755, |