imfreedom/ansible

5fbedae54c03
fix the syntax for checksums for the convey download
---
- name: install dependencies
apt:
name:
- apt-transport-https
- ca-certificates
- gnupg2
state: present
force_apt_get: true
- name: add apt-key
apt_key:
url: https://download.docker.com/linux/ubuntu/gpg
id: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
state: present
- name: remove buster repository
apt_repository:
repo: "deb [arch=amd64] https://download.docker.com/linux/debian buster stable"
state: absent
filename: "docker"
update_cache: true
- name: add repository
apt_repository:
repo: "deb [arch=amd64] https://download.docker.com/linux/debian bullseye stable"
state: present
filename: "docker"
update_cache: true
- name: install
apt:
name:
- docker-ce
state: present
force_apt_get: true