mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-06 13:53:29 +01:00
75fd17aac8
1. Now does not remove prerequisite packages, lvm2 was included in these packages (not good when you use LVM2 for real). 2. Added a bit more idempotency to the shell scripts - only delete if it exists. 3. Check that the process isn't running and binaries are gone.
14 lines
289 B
YAML
14 lines
289 B
YAML
---
|
|
|
|
- name: Ensure docker is installed using Zypper
|
|
zypper:
|
|
name: docker
|
|
state: present
|
|
register: ensure_docker_prerequisites_installed
|
|
until: ensure_docker_prerequisites_installed is succeeded
|
|
retries: 3
|
|
delay: 10
|
|
notify:
|
|
- restart docker
|
|
|
|
- meta: flush_handlers
|