mirror of https://github.com/ceph/ceph-ansible.git
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 <gabrioux@redhat.com>
(cherry picked from commit d746575fd0
)
pull/4928/head
parent
4c4b0edfec
commit
34c4f5baac
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue