blob: f0b05c56a6ac049d9d6a0f7c27179c9e9bfa0d5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# manifests/client.pp
class sshd::client {
case $operatingsystem {
debian: { include sshd::client::debian }
default: { include sshd::client::base }
}
}
class sshd::client::base {
package {'openssh-clients':
ensure => installed,
}
# this is needed because the gid might have changed
file { '/etc/ssh/ssh_known_hosts':
mode => 0644, owner => root, group => 0;
}
# Now collect all server keys
Sshkey <<||>>
}
class sshd::client::debian inherits sshd::client::base {
Package['openssh-clients']{
name => 'openssh-client',
}
}
|