blob: 47e2c8aeb07a4bcd92c75b3130fb34bf69f5aad6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class sshd::client::base {
# this is needed because the gid might have changed
file { '/etc/ssh/ssh_known_hosts':
ensure => present,
mode => '0644',
owner => root,
group => 0;
}
# Now collect all server keys
if $::sshd::use_storedconfigs {
include sshd::client::storedconfigs
}
}
|