mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 03:10:42 -03:30
force boolean evaluation
This commit is contained in:
parent
74123647fe
commit
ada2d65547
@ -223,5 +223,5 @@
|
||||
file:
|
||||
path: "{{ docker_base_path }}"
|
||||
state: absent
|
||||
when: cleanup_docker_base|default(True)
|
||||
when: cleanup_docker_base|default(True)|bool
|
||||
delegate_to: localhost
|
||||
|
||||
@ -25,7 +25,7 @@
|
||||
tag: "{{ awx_version }}"
|
||||
state: absent
|
||||
delegate_to: localhost
|
||||
when: docker_remove_local_images|default(False)
|
||||
when: docker_remove_local_images|default(False)|bool
|
||||
|
||||
- name: Tag and Push Container Images
|
||||
block:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user