tripleo-upgrade/tasks/common/create_http_test_scripts.yml
Yurii Prokulevych b25817a233 Migrate from with_X loop.
With the release of Ansible 2.5, the recommended way to perform
 loops is the use the new loop keyword instead of with_X style loops.
This review addresses aforementioned change for common tasks
within tripleo-upgrade role.

Change-Id: I70d387b381b6ce297507cbfe669ea7be902df605
2019-05-30 10:56:25 +02:00

10 lines
231 B
YAML

---
- name: Create FIP HTTP check scripts
template:
src: "{{ item }}"
dest: "{{ working_dir }}/{{ item.split('.') | first }}.sh"
mode: 0775
loop:
- 'fip_http_check_start.sh.j2'
- 'fip_http_check_stop.sh.j2'