Skip to content

Commit

Permalink
fix typo in keyring
Browse files Browse the repository at this point in the history
  • Loading branch information
vitabaks committed Aug 12, 2024
1 parent 2f9be92 commit 6364cd6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions roles/add-repository/tasks/extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
ansible.builtin.apt_key:
url: "https://packagecloud.io/timescale/timescaledb/gpgkey"
state: present
keyring: /etc/apt/trusted.gpg.d/{{ item.key | urlsplit('netloc') }}.gpg
keyring: /etc/apt/trusted.gpg.d/packagecloud.io.gpg
when: ansible_os_family == "Debian"

- name: Add TimescaleDB repository
Expand Down Expand Up @@ -38,7 +38,7 @@
ansible.builtin.apt_key:
url: "https://repos.citusdata.com/community/gpgkey"
state: present
keyring: /etc/apt/trusted.gpg.d/{{ item.key | urlsplit('netloc') }}.gpg
keyring: /etc/apt/trusted.gpg.d/repos.citusdata.com.gpg
when: ansible_os_family == "Debian"

- name: Add Citus repository
Expand Down
2 changes: 1 addition & 1 deletion roles/consul/tasks/install_linux_repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
ansible.builtin.apt_key:
url: "{{ consul_repo_url }}/gpg"
state: present
keyring: /etc/apt/trusted.gpg.d/{{ item.key | urlsplit('netloc') }}.gpg
keyring: /etc/apt/trusted.gpg.d/{{ consul_repo_url | urlsplit('netloc') }}.gpg
when: "ansible_os_family|lower == 'debian'"

- name: Add hashicorp repository
Expand Down

0 comments on commit 6364cd6

Please sign in to comment.