mirror of https://github.com/ceph/ceph-ansible.git
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
parent
15287c6643
commit
162b7d2b23
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue