]> gitweb.fluxo.info Git - puppet-sshd.git/commitdiff
remove double definition
authormh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>
Tue, 29 Jul 2008 23:34:40 +0000 (23:34 +0000)
committermh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>
Tue, 29 Jul 2008 23:34:40 +0000 (23:34 +0000)
git-svn-id: https://svn/ipuppet/trunk/modules/sshd@2093 d66ca3ae-40d7-4aa7-90d4-87d79ca94279

manifests/init.pp

index 7b14e8b41dc0a3cdf4f7175732bcc61fc9302c7d..ae21fe6152fb19d64c60d07f002176c2f836c2ee 100644 (file)
@@ -109,18 +109,6 @@ class sshd::base {
         hasstatus => true,
                require => File[sshd_config],
     }
-    # Now add the key, if we've got one
-    case $sshrsakey_key {
-        '': { info("no sshrsakey on $fqdn") }
-        default: {
-            @@sshkey{"$hostname.$domain":
-                type => ssh-rsa,
-                key => $sshrsakey_key,
-                ensure => present,
-                require => Package["openssh-clients"],
-            }
-        }
-    }
 }
 
 class sshd::linux inherits sshd::base {