diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-09-13 13:40:49 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-09-13 13:40:49 -0300 |
commit | 3c220c51e0bc99b25120ba8998463b907bf42ac7 (patch) | |
tree | 6d6a5bdeddc1dfafba127eda407719c06ecda3b0 /manifests/subsystems/monkeysphere.pp | |
parent | b4221a547d5b7739bd9c76a1c6f75a4536490e2d (diff) | |
download | puppet-nodo-3c220c51e0bc99b25120ba8998463b907bf42ac7.tar.gz puppet-nodo-3c220c51e0bc99b25120ba8998463b907bf42ac7.tar.bz2 |
Addin monkeysphere_nodo class
Diffstat (limited to 'manifests/subsystems/monkeysphere.pp')
-rw-r--r-- | manifests/subsystems/monkeysphere.pp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/subsystems/monkeysphere.pp b/manifests/subsystems/monkeysphere.pp index d34a893..8cff4ce 100644 --- a/manifests/subsystems/monkeysphere.pp +++ b/manifests/subsystems/monkeysphere.pp @@ -16,3 +16,13 @@ define monkeysphere_host($port = '') { # Email the server key monkeysphere::email_server_keys { "root": } } + +class monkeysphere_nodo { + # Monkeysphere configuration + monkeysphere_host { "$hostname": + port => $monkeysphere_ssh_port ? { + false => '', + default => $monkeysphere_ssh_port, + } + } +} |