
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
10 lines
231 B
YAML
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'
|