aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-07-29 23:34:40 +0000
committermh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-07-29 23:34:40 +0000
commitf66c80d97ab6f4c9e2cb3620a7b85640c0734e89 (patch)
tree4b960a38e53ef65d0b720acea336ed3572a997f0
parente41d117247df43562e18df255f31e707edcac01a (diff)
downloadpuppet-sshd-f66c80d97ab6f4c9e2cb3620a7b85640c0734e89.tar.gz
puppet-sshd-f66c80d97ab6f4c9e2cb3620a7b85640c0734e89.tar.bz2
remove double definition
git-svn-id: https://svn/ipuppet/trunk/modules/sshd@2093 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
-rw-r--r--manifests/init.pp12
1 files changed, 0 insertions, 12 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 7b14e8b..ae21fe6 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -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 {