blob: c09effe328bc6df0a89e2dec425cb848d8d87678 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
define nodo::subsystem::monkeysphere(
$port = hiera('nodo::monkeysphere_host::ssh_port', ''),
$mail_recipient = hiera('mail::root_mail_recipient', 'nobody')
) {
include monkeysphere
# Ensure the server's ssh key is imported into your monkeysphere key ring
monkeysphere::import_key { "ssh":
port => $port,
}
# TODO
# Currently we don't have a defined policy regarding whether
# to publish all our node keys to public keyservers, so leave
# automatic publishing disabled for now.
#monkeysphere::publish_server_keys { }
# Email the server key
monkeysphere::email_server_keys { "$mail_recipient": }
}
|