when:
(ceph_origin == "distro" or ceph_stable_rh_storage) and
mon_group_name in group_names and
- ansible_pkg_mgr == "yum"
+ ansible_pkg_mgr == "yum" and
+ ceph_stable and
+ ceph_stable_release not in ceph_stable_releases
- name: install distro or red hat storage ceph mon
dnf:
when:
(ceph_origin == "distro" or ceph_stable_rh_storage) and
mon_group_name in group_names and
- ansible_pkg_mgr == "dnf"
+ ansible_pkg_mgr == "dnf" and
+ ceph_stable and
+ ceph_stable_release not in ceph_stable_releases
- name: install distro or red hat storage ceph osd
yum:
when:
(ceph_origin == "distro" or ceph_stable_rh_storage) and
osd_group_name in group_names and
- ansible_pkg_mgr == "yum"
+ ansible_pkg_mgr == "yum" and
+ ceph_stable and
+ ceph_stable_release not in ceph_stable_releases
- name: install distro or red hat storage ceph osd
dnf:
when:
(ceph_origin == "distro" or ceph_stable_rh_storage) and
osd_group_name in group_names and
- ansible_pkg_mgr == "dnf"
+ ansible_pkg_mgr == "dnf" and
+ ceph_stable and
+ ceph_stable_release not in ceph_stable_releases
- name: install ceph-test
yum: