474b23271d
Conflicts: templates/sshd_config/Debian_squeeze.erb
11 lines
262 B
Puppet
11 lines
262 B
Puppet
class sshd::client::base {
|
|
# this is needed because the gid might have changed
|
|
config_file { '/etc/ssh/ssh_known_hosts':
|
|
}
|
|
|
|
# Now collect all server keys
|
|
case $sshd_shared_ip {
|
|
no: { Sshkey <<||>> }
|
|
yes: { Sshkey <<| tag == "fqdn" |>> }
|
|
}
|
|
}
|