Modifying Ansible filter 'failed' according to Ansible 2.5 porting guide (#5678)
This commit is contained in:
parent
9b7090ca1d
commit
d2c44dd4df
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@
|
||||||
delegate_to: "{{ download_delegate if download_run_once else inventory_hostname }}"
|
delegate_to: "{{ download_delegate if download_run_once else inventory_hostname }}"
|
||||||
run_once: "{{ download_run_once }}"
|
run_once: "{{ download_run_once }}"
|
||||||
register: container_load_status
|
register: container_load_status
|
||||||
failed_when: container_load_status | failed
|
failed_when: container_load_status is failed
|
||||||
become: "{{ user_can_become_root | default(false) or not (download_run_once and download_localhost) }}"
|
become: "{{ user_can_become_root | default(false) or not (download_run_once and download_localhost) }}"
|
||||||
when:
|
when:
|
||||||
- download_force_cache
|
- download_force_cache
|
||||||
|
|
Loading…
Reference in a new issue