diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-11-21 18:55:35 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-11-21 18:55:35 -0200 |
commit | 7432d4ab0c05a10ad3d082ca9c82ea286520f4b3 (patch) | |
tree | 101f1424c4ac2139db9c36c1c3b0889ba0b7ebbf /manifests | |
parent | 008f898d570a9a64faee1fdce628ac20d4fbc30f (diff) | |
download | puppet-backup-7432d4ab0c05a10ad3d082ca9c82ea286520f4b3.tar.gz puppet-backup-7432d4ab0c05a10ad3d082ca9c82ea286520f4b3.tar.bz2 |
Changing key type to RSA
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 236751a..8c908b9 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -155,7 +155,7 @@ class backup { user => "$hostname", sshoptions => "-p $port", installkey => $installkey, - backupkeytype => "dsa", + backupkeytype => "rsa", backupkeystore => "puppet://$server/files/keys", } } @@ -167,7 +167,7 @@ class backup { installkey => $installkey, home => "$backupdir/remote/$fqdn", backupdir => "$backupdir/remote/$fqdn/rsync", - backupkeytype => "dsa", + backupkeytype => "rsa", backupkeystore => "puppet://$server/files/keys", keepdaily => '7', keepweekly => '4', |