mirror of
https://github.com/geerlingguy/ansible-role-docker.git
synced 2024-11-18 19:10:43 +01:00
7c86fe1739
As described in https://github.com/ansible/ansible/issues/65687, get_url only partially supports check_mode: "the changed status will reflect comparison to an empty source file". Before this change, executing this code, with the key already being in place on the target system, would report "OK", while check_mode would report "changed". Due to this change, both now either report "OK" or "changed", depending on the state of the target system.
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
---
|
|
- name: Ensure old versions of Docker are not installed.
|
|
package:
|
|
name:
|
|
- docker
|
|
- docker-engine
|
|
state: absent
|
|
|
|
- name: Ensure dependencies are installed.
|
|
apt:
|
|
name:
|
|
- apt-transport-https
|
|
- ca-certificates
|
|
state: present
|
|
when: docker_add_repo | bool
|
|
|
|
- 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', '<')
|
|
|
|
- name: Ensure additional dependencies are installed (on Ubuntu >= 20.04).
|
|
apt:
|
|
name: gnupg
|
|
state: present
|
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '>=')
|
|
|
|
- name: Add Docker apt key.
|
|
ansible.builtin.get_url:
|
|
url: "{{ docker_apt_gpg_key }}"
|
|
dest: /etc/apt/trusted.gpg.d/docker.asc
|
|
mode: '0644'
|
|
force: false
|
|
checksum: "{{ docker_apt_gpg_key_checksum | default(omit) }}"
|
|
register: add_repository_key
|
|
ignore_errors: "{{ docker_apt_ignore_key_error }}"
|
|
when: docker_add_repo | bool
|
|
|
|
- name: Ensure curl is present (on older systems without SNI).
|
|
package: name=curl state=present
|
|
when: add_repository_key is failed and docker_add_repo | bool
|
|
|
|
- name: Add Docker apt key (alternative for older systems without SNI).
|
|
shell: >
|
|
curl -sSL {{ docker_apt_gpg_key }} | apt-key add -
|
|
when: add_repository_key is failed and docker_add_repo | bool
|
|
|
|
- name: Add Docker repository.
|
|
apt_repository:
|
|
repo: "{{ docker_apt_repository }}"
|
|
state: present
|
|
update_cache: true
|
|
when: docker_add_repo | bool
|