remove double definition

git-svn-id: https://svn/ipuppet/trunk/modules/sshd@2093 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
This commit is contained in:
mh 2008-07-29 23:34:40 +00:00
parent e41d117247
commit f66c80d97a

View 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 {