mirror of https://github.com/ceph/ceph-ansible.git
commit
db1fbab1cb
|
@ -76,6 +76,26 @@
|
||||||
osd_group_name in group_names and
|
osd_group_name in group_names and
|
||||||
ansible_pkg_mgr == "dnf"
|
ansible_pkg_mgr == "dnf"
|
||||||
|
|
||||||
|
- name: install distro or red hat storage ceph mds
|
||||||
|
yum:
|
||||||
|
name: "ceph-mds"
|
||||||
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
|
when:
|
||||||
|
(ceph_origin == "distro" or ceph_stable_rh_storage or ceph_dev or
|
||||||
|
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
||||||
|
mds_group_name in group_names and
|
||||||
|
ansible_pkg_mgr == "yum"
|
||||||
|
|
||||||
|
- name: install distro or red hat storage ceph mds
|
||||||
|
dnf:
|
||||||
|
name: "ceph-mds"
|
||||||
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
|
when:
|
||||||
|
(ceph_origin == "distro" or ceph_stable_rh_storage or ceph_dev or
|
||||||
|
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
||||||
|
mds_group_name in group_names and
|
||||||
|
ansible_pkg_mgr == "dnf"
|
||||||
|
|
||||||
- name: install ceph-test
|
- name: install ceph-test
|
||||||
yum:
|
yum:
|
||||||
name: ceph-test
|
name: ceph-test
|
||||||
|
|
Loading…
Reference in New Issue