From 059386f2de985192f8c0d749154717833e9bc71d Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 7 Mar 2010 17:33:36 -0300 Subject: Introducing $monkeysphere_ssh_port --- manifests/init.pp | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index 9cf87db..7805944 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -23,19 +23,26 @@ class monkeysphere { # The needed packages package { monkeysphere: ensure => installed, } + $ssh_port = $monkeysphere_ssh_port ? { + '' => '', + default => ":$monkeysphere_ssh_port", + } + + $key = "ssh://${fqdn}{$ssh_port}" + # Server host key publication case $monkeysphere_publish_key { false: { - exec { "/usr/sbin/monkeysphere-host import-key /etc/ssh/ssh_host_rsa_key ssh://$fqdn": - unless => "/usr/bin/gpg --homedir /var/lib/monkeysphere/host --list-keys '=ssh://$fqdn' &> /dev/null", + exec { "/usr/sbin/monkeysphere-host import-key /etc/ssh/ssh_host_rsa_key $key": + unless => "/usr/bin/gpg --homedir /var/lib/monkeysphere/host --list-keys '=$key' &> /dev/null", user => "root", require => Package["monkeysphere"], } } default: { - exec { "/usr/sbin/monkeysphere-host import-key /etc/ssh/ssh_host_rsa_key $fqdn && \ + exec { "/usr/sbin/monkeysphere-host import-key /etc/ssh/ssh_host_rsa_key $key && \ /usr/sbin/monkeysphere-host publish-key": - unless => "/usr/bin/gpg --homedir /var/lib/monkeysphere/host --list-keys '=ssh://$fqdn' &> /dev/null", + unless => "/usr/bin/gpg --homedir /var/lib/monkeysphere/host --list-keys '=$key' &> /dev/null", user => "root", require => Package["monkeysphere"], } -- cgit v1.2.3