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:
softwarefactory-project-zuul[bot] 2018-10-11 20:17:48 +00:00 committed by GitHub
commit 6f55cde6d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -217,5 +217,5 @@
file:
path: "{{ docker_base_path }}"
state: absent
when: cleanup_docker_base|default(True)
when: cleanup_docker_base|default(True)|bool
delegate_to: localhost

View File

@ -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: