From d746575fd0ac83d5861b6aae0143aa8d390760e6 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Fri, 10 Jan 2020 11:17:27 +0100 Subject: [PATCH] docker2podman: install podman This commit adds a package installation task in order to install podman during the docker-to-podman.yml migration playbook. Signed-off-by: Guillaume Abrioux --- infrastructure-playbooks/docker-to-podman.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/infrastructure-playbooks/docker-to-podman.yml b/infrastructure-playbooks/docker-to-podman.yml index 6b1a8baf9..e3c801402 100644 --- a/infrastructure-playbooks/docker-to-podman.yml +++ b/infrastructure-playbooks/docker-to-podman.yml @@ -73,6 +73,16 @@ tasks: + - name: install podman + package: + name: podman + state: present + register: result + until: result is succeeded + tags: + - with_pkg + when: not is_atomic | bool + - import_role: name: ceph-mon tasks_from: systemd.yml -- 2.39.5