From c9e799bf86df8a6010baf08e7e757e2a2b84a0f3 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Fri, 19 Sep 2014 12:36:07 +0200 Subject: [PATCH] Do not use multiline strings for the 'stack_sshkey' option Using multiline strings for the 'stack_sshkey' option results in the following Puppt error: Parameter key failed on Ssh_authorized_key[stack]: Key must not contain whitespace: Change-Id: I41da285086af3fd90fb4887cd643d17ec52806a8 --- config.yaml.sample | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config.yaml.sample b/config.yaml.sample index 701eec6..8bbecf7 100644 --- a/config.yaml.sample +++ b/config.yaml.sample @@ -2,8 +2,7 @@ hostname_manager: manager.openstack.site hostname_compute: compute.openstack.site stack_pass: somebiglongLinuxpasswordhash -stack_sshkey: > - the_ssh_public_key_you_want_for_your_stack_user +stack_sshkey: the_ssh_public_key_you_want_for_your_stack_user # Define the setup mode to install the environment # valid values: grenade/devstack default is devstack setup_mode: devstack