From d75a179081bc93a4172b8ce49b0f932f0efa6b38 Mon Sep 17 00:00:00 2001 From: Logan V Date: Thu, 19 Jan 2017 06:14:01 -0600 Subject: [PATCH] Workaround ansible yaml export bug Avoids ansible 20253 by casting the var to a proper list. See: https://github.com/ansible/ansible/issues/20253 http://cdn.pasteraw.com/m2gkunzl1yj5stucqc65aivt65i9a8m Change-Id: I5a018c88dde73564d15e15535d080adc5415e663 --- tests/roles/bootstrap-host/tasks/prepare_aio_config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/roles/bootstrap-host/tasks/prepare_aio_config.yml b/tests/roles/bootstrap-host/tasks/prepare_aio_config.yml index 0eefdd3801..4c66d91fbb 100644 --- a/tests/roles/bootstrap-host/tasks/prepare_aio_config.yml +++ b/tests/roles/bootstrap-host/tasks/prepare_aio_config.yml @@ -91,7 +91,7 @@ - name: Set repo_build_pip_extra_indexes fact set_fact: - repo_build_pip_extra_indexes: "[\"{{ fastest_wheel_mirror.stdout }}\"]" + repo_build_pip_extra_indexes: "{{ fastest_wheel_mirror.stdout | list }}" when: not pip_conf_file.stat.exists - name: Check whether the host has a git cache