mirror of https://github.com/ceph/ceph-ansible.git
purge: do not try to stop docker when binary is podman
If the container binary is podman, we shouldn't try to stop docker here. Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>pull/4805/head
parent
fe5ffe589e
commit
b18476a1a6
|
@ -542,7 +542,9 @@
|
|||
name: docker
|
||||
state: stopped
|
||||
enabled: no
|
||||
when: not is_atomic
|
||||
when:
|
||||
- not is_atomic
|
||||
- container_binary == 'docker'
|
||||
ignore_errors: true
|
||||
|
||||
- name: remove docker on debian/ubuntu
|
||||
|
|
Loading…
Reference in New Issue