blob: 35983ca9ffc77128f0a1ff642e13d8ceaf52294e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Define a monkeysphere host
define monkeysphere_host($port = '') {
# Monkeysphere
#
# 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_ssh_port = $port
$monkeysphere_publish_key = 'mail'
include monkeysphere
}
|