From: Andrew Schoen Date: Mon, 17 Apr 2017 13:37:34 +0000 (-0500) Subject: ceph-common: install ceph-mgr for rhcs on rhel X-Git-Tag: v2.2.10~16 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=17501308cebf5790bbcd2888a866399ef217e656;p=ceph-ansible.git ceph-common: install ceph-mgr for rhcs on rhel Signed-off-by: Andrew Schoen --- diff --git a/tasks/installs/install_rh_storage_on_redhat.yml b/tasks/installs/install_rh_storage_on_redhat.yml index dd45243ab..b5a1984a6 100644 --- a/tasks/installs/install_rh_storage_on_redhat.yml +++ b/tasks/installs/install_rh_storage_on_redhat.yml @@ -70,3 +70,9 @@ state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" when: - nfs_group_name in group_names + +- name: install ceph mgr + package: + name: ceph-mgr + state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" + when: mgr_group_name in group_names