diff options
author | Manuel Buil <mbuil@suse.com> | 2017-09-27 21:00:38 +0200 |
---|---|---|
committer | Manuel Buil <mbuil@suse.com> | 2017-09-27 21:00:38 +0200 |
commit | 7056b91177bcfb2f745cbb3d4c6e55005c59b9c7 (patch) | |
tree | 6dc8a0bed679c7227e625ece3ee52464dbf381e8 | |
parent | e399ec873c902675c9b154dcc40d47358f3a95ee (diff) |
Remove the quotes from the IP
Functest complains that it cannot connect to the installer because it does
not understand the ip or hostname. The cause for this is the quotes in the
template
Change-Id: I75c30b7f1bbcee3f968692b4347ceb13ab1131d2
Signed-off-by: Manuel Buil <mbuil@suse.com>
-rw-r--r-- | xci/playbooks/roles/prepare-functest/templates/env.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xci/playbooks/roles/prepare-functest/templates/env.j2 b/xci/playbooks/roles/prepare-functest/templates/env.j2 index 52211b45..b928accd 100644 --- a/xci/playbooks/roles/prepare-functest/templates/env.j2 +++ b/xci/playbooks/roles/prepare-functest/templates/env.j2 @@ -1,4 +1,4 @@ INSTALLER_TYPE=osa -INSTALLER_IP="192.168.122.2" +INSTALLER_IP=192.168.122.2 EXTERNAL_NETWORK="{{ external_network }}" DEPLOY_SCENARIO="os-nosdn-nofeature-noha" |