blob: bf54554db292679f2e5c24087a15c61e8e0add46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
---
- name: add repository key
copy:
src: repo.gpg
dest: /etc/apt/keyrings/grafana.gpg
register: apt_repo_grafana_key
## TODO: remove once all servers have been converted
- name: remove repository key from old location
file:
path: /etc/apt/trusted.gpg.d/grafana.gpg
state: absent
- name: add repository entry
copy:
content: |
deb [signed-by=/etc/apt/keyrings/grafana.gpg] https://packages.grafana.com/oss/deb stable main
dest: /etc/apt/sources.list.d/grafana.list
register: apt_repo_grafana_sources
- name: update apt cache
when: apt_repo_grafana_key is changed or
apt_repo_grafana_sources is changed
command: apt-get update
args:
warn: false
|