From c4f3ab5649c0a79e708ea94a5556fe53acf99f20 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Sat, 7 May 2016 02:37:09 +0200 Subject: [PATCH] ceph-common: install ceph-mds package MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We kinda ommitted this package, now Jewel is out and the metadata server is considered as stable. Signed-off-by: Sébastien Han --- .../tasks/installs/install_on_redhat.yml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/roles/ceph-common/tasks/installs/install_on_redhat.yml b/roles/ceph-common/tasks/installs/install_on_redhat.yml index b76a24d0f..f434d9dba 100644 --- a/roles/ceph-common/tasks/installs/install_on_redhat.yml +++ b/roles/ceph-common/tasks/installs/install_on_redhat.yml @@ -76,6 +76,26 @@ osd_group_name in group_names and ansible_pkg_mgr == "dnf" +- name: install distro or red hat storage ceph mds + yum: + name: "ceph-mds" + state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" + when: + (ceph_origin == "distro" or ceph_stable_rh_storage or ceph_dev or + (ceph_stable and ceph_stable_release not in ceph_stable_releases)) and + mds_group_name in group_names and + ansible_pkg_mgr == "yum" + +- name: install distro or red hat storage ceph mds + dnf: + name: "ceph-mds" + state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" + when: + (ceph_origin == "distro" or ceph_stable_rh_storage or ceph_dev or + (ceph_stable and ceph_stable_release not in ceph_stable_releases)) and + mds_group_name in group_names and + ansible_pkg_mgr == "dnf" + - name: install ceph-test yum: name: ceph-test -- 2.39.5