]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
roles: ceph-mgr: Install the ceph-mgr package on SUSE
authorMarkos Chandras <mchandras@suse.de>
Thu, 14 Dec 2017 18:13:09 +0000 (18:13 +0000)
committerSébastien Han <seb@redhat.com>
Tue, 19 Dec 2017 12:40:35 +0000 (13:40 +0100)
The ceph-mgr package name is identical to RedHat so add the SUSE family
to the existing task.

(cherry picked from commit 162b7d2b23b72adabdae32275962409e19ba4e0b)
Signed-off-by: Sébastien Han <seb@redhat.com>
roles/ceph-mgr/tasks/pre_requisite.yml

index 4c3e314e19a6abebea244cbd6194c8f011db4d61..a437c02c49fdafa93f8c556789125582e479713f 100644 (file)
@@ -1,10 +1,10 @@
 ---
-- name: install redhat ceph-mgr package
+- name: install ceph-mgr package on RedHat or SUSE
   package:
     name: ceph-mgr
     state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
   when:
-    - ansible_os_family == 'RedHat'
+    - ansible_os_family in ['RedHat', 'Suse']
 
 - name: install ceph mgr for debian
   apt: