From 8ad503b2488c1b9544165fa53c01e27d85af17ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Fri, 19 May 2017 10:37:31 +0200 Subject: [PATCH] common: explicitly set rhel os version support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Clarify in the error message that only RHEL version >= 7.3 are supported. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1452431 Signed-off-by: Sébastien Han --- roles/ceph-common/tasks/checks/check_system.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ceph-common/tasks/checks/check_system.yml b/roles/ceph-common/tasks/checks/check_system.yml index 460c3bf5d..0457e3119 100644 --- a/roles/ceph-common/tasks/checks/check_system.yml +++ b/roles/ceph-common/tasks/checks/check_system.yml @@ -16,7 +16,7 @@ - name: fail on unsupported distribution for red hat ceph storage fail: - msg: "Distribution not supported {{ ansible_distribution_version }} by Red Hat Ceph Storage, only RHEL 7" + msg: "Distribution not supported {{ ansible_distribution_version }} by Red Hat Ceph Storage, only RHEL >= 7.3" when: - ceph_rhcs - ansible_distribution_version | version_compare('7.3', '<')