summaryrefslogtreecommitdiff
path: root/roles/apt-repo/grafana/tasks/main.yml
blob: 1b3f10c667dd4c827de36604d1472477cfbc3535 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
- name: add repository key
  copy:
    src: repo.gpg
    dest: /etc/apt/keyrings/grafana.gpg
  register: apt_repo_grafana_key

- 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