geerlingguy.ansible-role-do.../tasks/setup-Debian.yml

55 lines
1.4 KiB
YAML
Raw Normal View History

2017-02-24 05:08:18 +01:00
---
- name: Ensure old versions of Docker are not installed.
package:
name:
- docker
2023-11-10 16:20:54 +01:00
- docker.io
- docker-engine
state: absent
2017-09-19 10:19:58 +02:00
- name: Ensure dependencies are installed.
2017-02-24 05:08:18 +01:00
apt:
name:
- apt-transport-https
- ca-certificates
2017-02-24 05:08:18 +01:00
state: present
when: docker_add_repo | bool
2017-02-24 05:08:18 +01:00
2021-03-26 10:19:45 +01:00
- name: Ensure additional dependencies are installed (on Ubuntu < 20.04 and any other systems).
apt:
name: gnupg2
state: present
when: ansible_distribution != 'Ubuntu' or ansible_distribution_version is version('20.04', '<')
2021-03-26 10:19:45 +01:00
- name: Ensure additional dependencies are installed (on Ubuntu >= 20.04).
2021-03-24 03:26:04 +01:00
apt:
name: gnupg
state: present
2022-06-17 14:08:44 +02:00
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '>=')
2021-03-24 03:26:04 +01:00
- name: Ensure directory exists for /etc/apt/keyrings
file:
path: /etc/apt/keyrings
state: directory
mode: '0755'
- name: Ensure curl is present
package: name=curl state=present
- name: Add Docker apt key
shell: >
2023-11-17 05:23:52 +01:00
curl -fsSL {{ docker_apt_gpg_key }} | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg --yes
- name: Change permissions for /etc/apt/keyrings/docker.gpg
file:
path: /etc/apt/keyrings/docker.gpg
mode: 'a+r'
2017-02-24 05:08:18 +01:00
- name: Add Docker repository.
apt_repository:
repo: "{{ docker_apt_repository }}"
state: present
filename: "{{ docker_apt_filename }}"
2018-09-27 05:13:32 +02:00
update_cache: true
when: docker_add_repo | bool