diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-19 12:01:16 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-19 12:01:16 -0300 |
commit | f095e7c0d8e2f30e6981d73f0df0d72dc9f80d1a (patch) | |
tree | 4c9167480b14fc464a8ea77d55f5412022217f80 | |
parent | 947911ed7d6045fb96adf8e906ce8cc865d56ea0 (diff) | |
download | puppet-backup-f095e7c0d8e2f30e6981d73f0df0d72dc9f80d1a.tar.gz puppet-backup-f095e7c0d8e2f30e6981d73f0df0d72dc9f80d1a.tar.bz2 |
Currently we are not managing ssh keys using this module
-rw-r--r-- | manifests/rdiff.pp | 15 | ||||
-rw-r--r-- | manifests/rsync.pp | 15 |
2 files changed, 16 insertions, 14 deletions
diff --git a/manifests/rdiff.pp b/manifests/rdiff.pp index 7cf6ed0..cbb1f09 100644 --- a/manifests/rdiff.pp +++ b/manifests/rdiff.pp @@ -22,11 +22,12 @@ define backup::rdiff( sandbox => false, } - if !defined(Ssh_local_key["$hostname"]) { - ssh_local_key { "$hostname": - owner => root, - group => root, - home => '/root', - } - } + # Currently we're not managing ssh keys this way + #if !defined(Ssh_local_key["$hostname"]) { + # ssh_local_key { "$hostname": + # owner => root, + # group => root, + # home => '/root', + # } + #} } diff --git a/manifests/rsync.pp b/manifests/rsync.pp index 5f2aa35..8e5d13e 100644 --- a/manifests/rsync.pp +++ b/manifests/rsync.pp @@ -31,11 +31,12 @@ define backup::rsync( sandbox => false, } - if !defined(Nodo::Subsystem::Ssh::Local_key["$hostname"]) { - nodo::subsystem::ssh::local_key { "$hostname": - owner => root, - group => root, - home => '/root', - } - } + # Currently we're not managing ssh keys this way + #if !defined(Nodo::Subsystem::Ssh::Local_key["$hostname"]) { + # nodo::subsystem::ssh::local_key { "$hostname": + # owner => root, + # group => root, + # home => '/root', + # } + #} } |