aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-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 {