]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
common: explicitly set rhel os version support 1552/head
authorSébastien Han <seb@redhat.com>
Fri, 19 May 2017 08:37:31 +0000 (10:37 +0200)
committerSébastien Han <seb@redhat.com>
Fri, 19 May 2017 08:38:20 +0000 (10:38 +0200)
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 <seb@redhat.com>
roles/ceph-common/tasks/checks/check_system.yml

index 460c3bf5d4daf16adfdf7f3c97d7bdcad73055bc..0457e3119da8ec0e21321aa98fe91b5a21e94436 100644 (file)
@@ -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', '<')