Skip to content

Commit

Permalink
Consistency changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed May 3, 2024
1 parent ccf3e8f commit fbbb041
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tasks/repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
- name: repository | remove old public key
ansible.builtin.apt_key:
id: "{{ item.id }}"
keyserver: "{{ item.keyserver }}"
keyserver: "{{ apt_key_keyserver | default('keyserver.ubuntu.com') }}"
state: absent
with_items: "{{ influxdb_old_apt_keys }}"
tags:
Expand All @@ -21,7 +21,7 @@
- name: repository | add public key
ansible.builtin.apt_key:
id: "{{ item.id }}"
keyserver: "{{ item.keyserver }}"
keyserver: "{{ apt_key_keyserver | default('keyserver.ubuntu.com') }}"
state: present
with_items: "{{ influxdb_apt_keys }}"
tags:
Expand Down
2 changes: 0 additions & 2 deletions vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@ influxdb_dependencies_pre:

influxdb_old_apt_keys:
- id: 684A14CF2582E0C5
keyserver: keyserver.ubuntu.com

influxdb_apt_keys:
- id: 9D539D90D3328DC7D6C8D3B9D8FF8E1F7DF8B07E
keyserver: keyserver.ubuntu.com

influxdb_downloads_path: /var/lib/ansible/influxdb/downloads

Expand Down

0 comments on commit fbbb041

Please sign in to comment.