2009-09-29 19:53:04 +02:00
|
|
|
class sshd::client::base {
|
2009-12-10 23:15:07 +01:00
|
|
|
# this is needed because the gid might have changed
|
2010-10-04 22:03:49 +02:00
|
|
|
config_file { '/etc/ssh/ssh_known_hosts':
|
2009-12-10 23:15:07 +01:00
|
|
|
}
|
2009-09-29 19:53:04 +02:00
|
|
|
|
2009-12-10 23:15:07 +01:00
|
|
|
# Now collect all server keys
|
2010-01-31 00:32:12 +01:00
|
|
|
case $sshd_shared_ip {
|
2009-12-27 17:23:51 +01:00
|
|
|
no: { Sshkey <<||>> }
|
|
|
|
yes: { Sshkey <<| tag == "fqdn" |>> }
|
|
|
|
}
|
2009-09-29 19:53:04 +02:00
|
|
|
}
|