diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-07-14 14:55:57 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-07-14 14:55:57 -0300 |
commit | a89712653a0bc5b17cbcfd13fb339628c93eb3dc (patch) | |
tree | 0712d17a1c520aa09c2b17b17cb8e2e83bed235a | |
parent | a79d18f1925a4d164ae5db08818e4a49b4795032 (diff) | |
download | puppet-backup-a89712653a0bc5b17cbcfd13fb339628c93eb3dc.tar.gz puppet-backup-a89712653a0bc5b17cbcfd13fb339628c93eb3dc.tar.bz2 |
Using modules/site-keys instead of files/keys
-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 a8fb810..b9c6116 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -150,7 +150,7 @@ class backup { sshoptions => "-p $port", installkey => $installkey, backupkeytype => "rsa", - backupkeystore => "puppet://$server/files/keys", + backupkeystore => "puppet:///modules/site-keys", } } @@ -163,7 +163,7 @@ class backup { backupdir => "$backupdir/remote/$fqdn/rsync", backupkeytype => "rsa", id_file => "/root/.ssh/id_rsa", - backupkeystore => "puppet://$server/files/keys", + backupkeystore => "puppet:///modules/site-keys", keepdaily => '7', keepweekly => '4', keepmonthly => '3', |