]> gitweb.fluxo.info Git - puppet-backup.git/commitdiff
Currently we are not managing ssh keys using this module
authorSilvio Rhatto <rhatto@riseup.net>
Sat, 19 Mar 2016 15:01:16 +0000 (12:01 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sat, 19 Mar 2016 15:01:16 +0000 (12:01 -0300)
manifests/rdiff.pp
manifests/rsync.pp

index 7cf6ed034175c9ea19b5fe31fecda3e52e67f203..cbb1f096f3dce982f49b604aae27f0663dd0155a 100644 (file)
@@ -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',
+  #  }
+  #}
 }
index 5f2aa35f37284835102b5056c2e5febb9b24f259..8e5d13e21467a8c037b0c7fe50ad8407d6df6761 100644 (file)
@@ -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',
+  #  }
+  #}
 }