aboutsummaryrefslogtreecommitdiff
path: root/manifests/import_key.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/import_key.pp')
-rw-r--r--manifests/import_key.pp10
1 files changed, 7 insertions, 3 deletions
diff --git a/manifests/import_key.pp b/manifests/import_key.pp
index ec00fee..ba965ce 100644
--- a/manifests/import_key.pp
+++ b/manifests/import_key.pp
@@ -1,4 +1,8 @@
-define monkeysphere::import_key ( $scheme = 'ssh://', $port = '', $path = '/etc/ssh/ssh_host_rsa_key', $hostname = $fqdn ) {
+define monkeysphere::import_key (
+ $scheme = 'ssh://',
+ $port = '',
+ $path = '/etc/ssh/ssh_host_rsa_key',
+ $hostname = $fqdn ) {
# if we're getting a port number, prefix with a colon so it's valid
$prefixed_port = $port ? {
@@ -10,7 +14,7 @@ define monkeysphere::import_key ( $scheme = 'ssh://', $port = '', $path = '/etc/
exec { "monkeysphere-host import-key $path $key":
alias => "monkeysphere-import-key",
- require => [ Package["monkeysphere"], File["monkeysphere_host_conf"] ],
- unless => "/usr/sbin/monkeysphere-host s | grep $key > /dev/null"
+ require => [ Package["monkeysphere"], File["monkeysphere_host_conf"] ],
+ unless => "/usr/sbin/monkeysphere-host s | grep $key > /dev/null"
}
}