blob: c520c9e3c12042b160d547d5def6d34c00bdf128 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
class nodo::subsystem::sshd {
$manage = hiera('nodo::subsystem::sshd::manage', true)
if $manage == true {
include ::sshd
# Add the localhost ssh key, useful when one needs
# to ssh to localhost.
sshkey { [ 'localhost', '127.0.0.1' ]:
type => ssh-rsa,
key => $::sshrsakey,
ensure => $::sshrsakey ? {
'' => absent,
default => present,
},
}
}
}
|