Skip to content

Commit

Permalink
Fix string/bool type mismatch on check (#600)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbarfuss authored Apr 6, 2021
1 parent cfb3559 commit c6ea70c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
openshift_host: "{{ ansible_tower.install.openshift.host | d(openshift_host) }}"
openshift_skip_tls_verify: "{{ ansible_tower.install.openshift.skip_tls_verify | d(openshift_skip_tls_verify) }}"
openshift_user: "{{ ansible_tower.install.openshift.user | d(openshift_user) }}"
openshfit_password: "{{ ansible_tower.install.openshift.password | d(openshift_password) }}"
openshift_password: "{{ ansible_tower.install.openshift.password | d(openshift_password) }}"
openshift_token: "{{ ansible_tower.install.openshift.token | d(openshift_token) }}"
openshift_pg_emptydir: "{{ ansible_tower.install.openshift.pg_emptydir | d(openshift_pg_emptydir) }}"
openshift_pg_pvc_name: "{{ ansible_tower.install.openshift.pg_pvc_name | d(openshift_pg_pvc_name) }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
delay: "{{ openshift_pg_pvc_wait_delay }}"

when:
- openshift_pg_emptydir|trim == 'false'
- openshift_pg_emptydir is false

0 comments on commit c6ea70c

Please sign in to comment.