mirror of https://github.com/ceph/ceph-ansible.git
ceph-validate: Fix "fail on unsupported CentOS release"
The `dashboard_enabled` condition used a `true` filter (which doesn't exist)
instead of the `bool` filter.
Signed-off-by: Benoît Knecht <bknecht@protonmail.ch>
(cherry picked from commit b7efca1785
)
pull/5351/head
parent
257b96634e
commit
da6e31a4c6
|
@ -31,7 +31,7 @@
|
|||
- ansible_distribution == 'CentOS'
|
||||
- ansible_distribution_major_version | int == 7
|
||||
- not containerized_deployment | bool
|
||||
- dashboard_enabled | true
|
||||
- dashboard_enabled | bool
|
||||
|
||||
- name: red hat based systems tasks
|
||||
when:
|
||||
|
|
Loading…
Reference in New Issue