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: ceph-ansible-1.0.5-33~34 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ba7120029cd9772877d1e699fd845de8ce8eb5d8;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 a60496aca..95cb929ab 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 @@ -64,3 +64,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