From: Andrew Schoen Date: Mon, 17 Apr 2017 13:40:24 +0000 (-0500) Subject: ceph-common: install ceph-mgr for rhcs on debian X-Git-Tag: v2.2.10~15 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ca754579fa75fff77a75c7b17119e3b0f88297ed;p=ceph-ansible.git ceph-common: install ceph-mgr for rhcs on debian Signed-off-by: Andrew Schoen --- diff --git a/tasks/installs/install_rh_storage_on_debian.yml b/tasks/installs/install_rh_storage_on_debian.yml index 1551638f3..9580c4c58 100644 --- a/tasks/installs/install_rh_storage_on_debian.yml +++ b/tasks/installs/install_rh_storage_on_debian.yml @@ -90,3 +90,9 @@ name: nfs-ganesha-fsal state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" when: nfs_group_name in group_names + +- name: install ceph mgr + apt: + pkg: ceph-mgr + state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}" + when: mgr_group_name in group_names