mirror of https://github.com/ceph/ceph-ansible.git
ceph-defaults: use podman on Fedora only
It seems Atomic 7.5 has podman already, however this is an old version (0.4). The podman integration is targetting RHEL 8, so Fedora is currently the closest to that. Signed-off-by: Sébastien Han <seb@redhat.com>pull/3367/head
parent
69d97f6480
commit
ac3e18e4c1
|
@ -16,7 +16,9 @@
|
||||||
- name: set_fact is_podman
|
- name: set_fact is_podman
|
||||||
set_fact:
|
set_fact:
|
||||||
is_podman: "{{ podman_binary.stat.exists }}"
|
is_podman: "{{ podman_binary.stat.exists }}"
|
||||||
when: is_atomic
|
when:
|
||||||
|
- is_atomic
|
||||||
|
- ansible_distribution == 'Fedora'
|
||||||
|
|
||||||
- name: set_fact container_binary
|
- name: set_fact container_binary
|
||||||
set_fact:
|
set_fact:
|
||||||
|
|
Loading…
Reference in New Issue