aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/monkeysphere.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-09-25 22:28:04 -0300
committerSilvio Rhatto <rhatto@riseup.net>2010-09-25 22:28:04 -0300
commitfb4b9d7bffb7bf45c089a52a0c02edce570533fc (patch)
treec385903c3dfc47443733362f7e99e824274d6896 /manifests/subsystems/monkeysphere.pp
parent80c3d12b5eb6f8fa1a68d89f28101837142e57cd (diff)
downloadpuppet-nodo-fb4b9d7bffb7bf45c089a52a0c02edce570533fc.tar.gz
puppet-nodo-fb4b9d7bffb7bf45c089a52a0c02edce570533fc.tar.bz2
Monkeysphere with ssh port
Diffstat (limited to 'manifests/subsystems/monkeysphere.pp')
-rw-r--r--manifests/subsystems/monkeysphere.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/subsystems/monkeysphere.pp b/manifests/subsystems/monkeysphere.pp
new file mode 100644
index 0000000..35983ca
--- /dev/null
+++ b/manifests/subsystems/monkeysphere.pp
@@ -0,0 +1,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
+}