From: Andrew Schoen Date: Thu, 19 May 2016 14:56:06 +0000 (-0500) Subject: install ceph-mds on debian systems when using red hat ceph storage X-Git-Tag: v1.0.6~115^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=eb92cb57e41c1712ac1addbd001f2b2b6e7f0610;p=ceph-ansible.git install ceph-mds on debian systems when using red hat ceph storage Signed-off-by: Andrew Schoen --- diff --git a/roles/ceph-common/tasks/installs/install_rh_storage_on_debian.yml b/roles/ceph-common/tasks/installs/install_rh_storage_on_debian.yml index 041e60daa..c4d57471b 100644 --- a/roles/ceph-common/tasks/installs/install_rh_storage_on_debian.yml +++ b/roles/ceph-common/tasks/installs/install_rh_storage_on_debian.yml @@ -35,3 +35,9 @@ name: radosgw state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" when: rgw_group_name in group_names + +- name: install red hat storage ceph mds + apt: + pkg: ceph-mds + state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" + when: mds_group_name in group_names