mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-06 13:53:29 +01:00
14 lines
421 B
YAML
14 lines
421 B
YAML
|
---
|
||
|
|
||
|
- name: Ensure Docker repository is uninstalled
|
||
|
apt_repository:
|
||
|
filename: docker-ce
|
||
|
repo: "deb https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} stable"
|
||
|
update_cache: false
|
||
|
state: absent
|
||
|
|
||
|
- name: Ensure Docker APT key is uninstalled
|
||
|
apt_key:
|
||
|
url: https://download.docker.com/linux/{{ ansible_distribution | lower }}/gpg
|
||
|
state: absent
|