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
This commit is contained in:
Logan V
2017-01-19 06:14:01 -06:00
parent cf71de7fc0
commit d75a179081

View File

@@ -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