ansible-role-k3s/tasks/teardown/uninstall-docker-opensuse-leap.yml

12 lines
313 B
YAML
Raw Normal View History

2020-02-25 18:29:39 +01:00
---
- name: Ensure docker is installed using Zypper
community.general.zypper:
2020-02-25 18:29:39 +01:00
name: docker
state: absent
register: ensure_docker_uninstalled
until: ensure_docker_uninstalled is succeeded
retries: 3
delay: 10
become: "{{ k3s_become_for_uninstall | ternary(true, false, k3s_become_for_all) }}"