]> gitweb.fluxo.info Git - puppet-sshd.git/commitdiff
Renaming $sshd_internal_ip to $sshd_shared_ip
authorSilvio Rhatto <rhatto@riseup.net>
Sat, 30 Jan 2010 23:32:12 +0000 (21:32 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Sat, 30 Jan 2010 23:32:12 +0000 (21:32 -0200)
manifests/base.pp
manifests/client/base.pp
manifests/init.pp

index 9aed1ba75e6edbb05eb18646af984dece09baac8..848e547e26e98d8e01511574410a6b90acf5e7dc 100644 (file)
@@ -19,9 +19,9 @@ class sshd::base {
         key    => $sshrsakey,
         ensure => present,
       }
-      # In case the node has an internal network address,
+      # In case the node has uses a shared network address,
       # we don't define a sshkey resource using an IP address
-      if $sshd_internal_ip == "no" {
+      if $sshd_shared_ip == "no" {
         @@sshkey{"$ipaddress":
           tag    => "ipaddress",
           type   => ssh-rsa,
index b1dc99def9ed82f676426b84d970499958d1ec39..7329f550920cc489a45d478c585e8c7fb8ee6b03 100644 (file)
@@ -5,7 +5,7 @@ class sshd::client::base {
   }
 
   # Now collect all server keys
-  case $sshd_internal_ip {
+  case $sshd_shared_ip {
     no:  { Sshkey <<||>> }
     yes: { Sshkey <<| tag == "fqdn" |>> }
   }
index f20c0d2042c5ef21d1d31e75e76173d1f6af41b8..72f4f4ef3ac48bb5db563319954c1ec61ff935e8 100644 (file)
@@ -214,8 +214,8 @@ class sshd {
   case $sshd_print_motd {
     '': { $sshd_print_motd = "yes" }
   }
-  case $sshd_internal_ip {
-    '': { $sshd_internal_ip = "no" }
+  case $sshd_shared_ip {
+    '': { $sshd_shared_ip = "no" }
   }
 
   include sshd::client