roles: ceph-mgr: Install the ceph-mgr package on SUSE

The ceph-mgr package name is identical to RedHat so add the SUSE family
to the existing task.
pull/2269/head
Markos Chandras 2017-12-14 18:13:09 +00:00 committed by Sébastien Han
parent 15287c6643
commit 162b7d2b23
1 changed files with 2 additions and 2 deletions

View File

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