diff options
author | Manuel Buil <mbuil@suse.com> | 2017-10-05 15:38:06 +0200 |
---|---|---|
committer | Markos Chandras <mchandras@suse.de> | 2017-10-05 14:32:34 +0000 |
commit | 5aafda4cedcf64d8261df853d749a328ed309784 (patch) | |
tree | bc01d7a101acb6ad001bd1b0a92d9fe46ed9e07c /xci/playbooks/roles/prepare-functest | |
parent | dfd9229ad20d0ff724ce5ccf45161c8eb5e2c9e5 (diff) |
Remove the quotes from the external network name
If we leave the quotes, functest will search for a neutron network with the
name "ext-net" instead of ext-net and will fail
Change-Id: I4ef62fa6ea69573f5872b864402ddb8644ce432d
Signed-off-by: Manuel Buil <mbuil@suse.com>
Diffstat (limited to 'xci/playbooks/roles/prepare-functest')
-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 b928accd..87093325 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 -EXTERNAL_NETWORK="{{ external_network }}" +EXTERNAL_NETWORK={{ external_network }} DEPLOY_SCENARIO="os-nosdn-nofeature-noha" |