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>pull/4919/head
parent
a09d1c38bf
commit
d746575fd0
|
@ -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