Skip to content

Commit

Permalink
Remove hardcoded debian docker apt repository url in docker role
Browse files Browse the repository at this point in the history
  • Loading branch information
at3rva committed Aug 12, 2024
1 parent 4e96fd0 commit 7090977
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nova/core/galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace: nova
name: core

# The version of the collection. Must be compatible with semantic versioning
version: 3.1.7
version: 3.1.18

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
4 changes: 2 additions & 2 deletions nova/core/roles/docker/tasks/debian_os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
block:
- name: Adding Docker GPG apt key...
ansible.builtin.apt_key:
url: https://download.docker.com/linux/debian/gpg
url: "{{ docker_apt_proxy }}/gpg"
keyring: /etc/apt/trusted.gpg.d/docker.gpg
state: present
register: docker_apt_key
Expand Down Expand Up @@ -47,7 +47,7 @@
block:
- name: Adding Docker GPG apt key...
ansible.builtin.apt_key:
url: https://download.docker.com/linux/{{ ansible_distribution | lower }}/gpg
url: "{{ docker_apt_proxy }}/gpg"
keyring: /etc/apt/trusted.gpg.d/docker.gpg
state: present
register: docker_apt_key
Expand Down

0 comments on commit 7090977

Please sign in to comment.