Merge pull request #373 from sosheskaz/fix-gpg

Download apt key directly
This commit is contained in:
Jeff Geerling 2022-09-08 17:34:14 -05:00 committed by GitHub
commit 6f636dc579
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,10 +26,11 @@
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '>=')
- name: Add Docker apt key.
apt_key:
ansible.builtin.get_url:
url: "{{ docker_apt_gpg_key }}"
id: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
state: present
dest: /etc/apt/trusted.gpg.d/docker.asc
mode: '0644'
force: true
register: add_repository_key
ignore_errors: "{{ docker_apt_ignore_key_error }}"