From da6e31a4c6ef47944cc56ca0a9ff38140a4771ff Mon Sep 17 00:00:00 2001 From: =?utf8?q?Beno=C3=AEt=20Knecht?= Date: Fri, 8 May 2020 14:39:52 +0200 Subject: [PATCH] ceph-validate: Fix "fail on unsupported CentOS release" MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The `dashboard_enabled` condition used a `true` filter (which doesn't exist) instead of the `bool` filter. Signed-off-by: Benoît Knecht (cherry picked from commit b7efca17851ac8462491a2d2dfe588673a58f78f) --- roles/ceph-validate/tasks/check_system.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ceph-validate/tasks/check_system.yml b/roles/ceph-validate/tasks/check_system.yml index 9cf933fa8..5c3518a04 100644 --- a/roles/ceph-validate/tasks/check_system.yml +++ b/roles/ceph-validate/tasks/check_system.yml @@ -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: -- 2.39.5