From: Silvio Rhatto Date: Tue, 17 Aug 2010 01:51:23 +0000 (-0300) Subject: Minor changes X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=d1873d6dbb9e00e490696b8b4930e6b43b22df1a;p=puppet-backup.git Minor changes --- diff --git a/manifests/init.pp b/manifests/init.pp index 50f2834..3c8014f 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -119,23 +119,23 @@ class backup { backupninja::rsync { "rsync-$title.$domain": # [general] ensure => $ensure, - user => "$hostname", - host => "$title.$domain", - format => 'long', + installkey => $installkey, home => "$backupdir/remote/$fqdn", backupdir => "$backupdir/remote/$fqdn/rsync", backupkeytype => "dsa", backupkeystore => "puppet://$server/files/keys", + keepdaily => '7', + keepweekly => '4', + keepmonthly => '3', + format => 'long', # [source] include => $backup_include_encrypted, exclude => $backup_exclude_encrypted, # [dest] + user => "$hostname", + host => "$title.$domain", port => $port, - installkey => $installkey, - keepdaily => '7', - keepweekly => '4', - keepmonthly => '3', - bandwidthlimit => false, + bandwidthlimit => $bandwidthlimit, compress => '1', } }