mirror of https://github.com/ceph/ceph-ansible.git
20 lines
679 B
YAML
20 lines
679 B
YAML
---
|
|
- name: install ceph-mgr package on RedHat or SUSE
|
|
package:
|
|
name: ceph-mgr
|
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
|
register: result
|
|
until: result is succeeded
|
|
when:
|
|
- ansible_os_family in ['RedHat', 'Suse']
|
|
|
|
- name: install ceph mgr for debian
|
|
apt:
|
|
name: ceph-mgr
|
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
|
default_release: "{{ ceph_stable_release_uca | default('') }}{{ ansible_distribution_release ~ '-backports' if ceph_origin == 'distro' and ceph_use_distro_backports else '' }}"
|
|
register: result
|
|
until: result is succeeded
|
|
when:
|
|
- ansible_os_family == 'Debian'
|