mirror of https://github.com/ceph/ceph-ansible.git
fix when clauses for installation of ceph RPM
parent
bca73c1ef1
commit
b199bdcfab
|
@ -44,11 +44,10 @@
|
||||||
- ceph
|
- ceph
|
||||||
- ceph-mon
|
- ceph-mon
|
||||||
when:
|
when:
|
||||||
(ceph_origin == "distro" or ceph_stable_rh_storage) and
|
(ceph_origin == "distro" or ceph_stable_rh_storage or
|
||||||
|
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
||||||
mon_group_name in group_names and
|
mon_group_name in group_names and
|
||||||
ansible_pkg_mgr == "yum" and
|
ansible_pkg_mgr == "yum"
|
||||||
ceph_stable and
|
|
||||||
ceph_stable_release not in ceph_stable_releases
|
|
||||||
|
|
||||||
- name: install distro or red hat storage ceph mon
|
- name: install distro or red hat storage ceph mon
|
||||||
dnf:
|
dnf:
|
||||||
|
@ -58,11 +57,10 @@
|
||||||
- ceph
|
- ceph
|
||||||
- ceph-mon
|
- ceph-mon
|
||||||
when:
|
when:
|
||||||
(ceph_origin == "distro" or ceph_stable_rh_storage) and
|
(ceph_origin == "distro" or ceph_stable_rh_storage or
|
||||||
|
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
||||||
mon_group_name in group_names and
|
mon_group_name in group_names and
|
||||||
ansible_pkg_mgr == "dnf" and
|
ansible_pkg_mgr == "dnf"
|
||||||
ceph_stable and
|
|
||||||
ceph_stable_release not in ceph_stable_releases
|
|
||||||
|
|
||||||
- name: install distro or red hat storage ceph osd
|
- name: install distro or red hat storage ceph osd
|
||||||
yum:
|
yum:
|
||||||
|
@ -72,11 +70,10 @@
|
||||||
- ceph
|
- ceph
|
||||||
- ceph-osd
|
- ceph-osd
|
||||||
when:
|
when:
|
||||||
(ceph_origin == "distro" or ceph_stable_rh_storage) and
|
(ceph_origin == "distro" or ceph_stable_rh_storage or
|
||||||
|
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
||||||
osd_group_name in group_names and
|
osd_group_name in group_names and
|
||||||
ansible_pkg_mgr == "yum" and
|
ansible_pkg_mgr == "yum"
|
||||||
ceph_stable and
|
|
||||||
ceph_stable_release not in ceph_stable_releases
|
|
||||||
|
|
||||||
- name: install distro or red hat storage ceph osd
|
- name: install distro or red hat storage ceph osd
|
||||||
dnf:
|
dnf:
|
||||||
|
@ -86,11 +83,10 @@
|
||||||
- ceph
|
- ceph
|
||||||
- ceph-osd
|
- ceph-osd
|
||||||
when:
|
when:
|
||||||
(ceph_origin == "distro" or ceph_stable_rh_storage) and
|
(ceph_origin == "distro" or ceph_stable_rh_storage or
|
||||||
|
(ceph_stable and ceph_stable_release not in ceph_stable_releases)) and
|
||||||
osd_group_name in group_names and
|
osd_group_name in group_names and
|
||||||
ansible_pkg_mgr == "dnf" and
|
ansible_pkg_mgr == "dnf"
|
||||||
ceph_stable and
|
|
||||||
ceph_stable_release not in ceph_stable_releases
|
|
||||||
|
|
||||||
- name: install ceph-test
|
- name: install ceph-test
|
||||||
yum:
|
yum:
|
||||||
|
|
Loading…
Reference in New Issue