From 8e2585b6c7c5b1b9d58ca29fb3e7967d18dfef62 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Fri, 7 Dec 2018 12:20:27 +0100 Subject: [PATCH] ceph-defaults: do not use podman only on atomic MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We want to test podman on f29 non-atomic, atomic is not a hard requirement. However, if you want to get podman then you will have to install it first before running the playbook. Signed-off-by: Sébastien Han --- roles/ceph-defaults/tasks/facts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ceph-defaults/tasks/facts.yml b/roles/ceph-defaults/tasks/facts.yml index 5861d8352..08ef682b3 100644 --- a/roles/ceph-defaults/tasks/facts.yml +++ b/roles/ceph-defaults/tasks/facts.yml @@ -19,7 +19,7 @@ - name: set_fact container_binary set_fact: - container_binary: "{{ 'podman' if is_atomic and is_podman and ansible_distribution == 'Fedora' else 'docker' }}" + container_binary: "{{ 'podman' if is_podman and ansible_distribution == 'Fedora' else 'docker' }}" when: containerized_deployment - name: set_fact monitor_name ansible_hostname -- 2.47.3