mirror of
https://github.com/ansible/awx.git
synced 2026-03-09 05:29:26 -02:30
Merge pull request #2091 from stoned/force_boolean_eval
force boolean evaluation Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
This commit is contained in:
@@ -217,5 +217,5 @@
|
|||||||
file:
|
file:
|
||||||
path: "{{ docker_base_path }}"
|
path: "{{ docker_base_path }}"
|
||||||
state: absent
|
state: absent
|
||||||
when: cleanup_docker_base|default(True)
|
when: cleanup_docker_base|default(True)|bool
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
tag: "{{ awx_version }}"
|
tag: "{{ awx_version }}"
|
||||||
state: absent
|
state: absent
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
when: docker_remove_local_images|default(False)
|
when: docker_remove_local_images|default(False)|bool
|
||||||
|
|
||||||
- name: Tag and Push Container Images
|
- name: Tag and Push Container Images
|
||||||
block:
|
block:
|
||||||
|
|||||||
Reference in New Issue
Block a user