forked from FF-RGB/ansible
39 lines
834 B
YAML
39 lines
834 B
YAML
---
|
|
|
|
- name: Retrieve Grafana Key and avoid apt_key
|
|
block:
|
|
- name: grafana |no apt key
|
|
ansible.builtin.get_url:
|
|
url: https://apt.grafana.com/gpg.key
|
|
dest: /usr/share/keyrings/grafana.key
|
|
|
|
- name: Enable grafana repository
|
|
apt_repository: repo="deb [signed-by=/usr/share/keyrings/grafana.key] https://apt.grafana.com stable main"
|
|
|
|
- name: Install grafana
|
|
apt: name=grafana
|
|
|
|
- name: Install grafana rendering dependencies
|
|
apt:
|
|
name:
|
|
- libxdamage1
|
|
- libxext6
|
|
- libxi6
|
|
- libxtst6
|
|
- libnss3
|
|
- libnss3
|
|
- libcups2
|
|
- libxss1
|
|
- libxrandr2
|
|
- libasound2
|
|
- libatk1.0-0
|
|
- libatk-bridge2.0-0
|
|
- libpangocairo-1.0-0
|
|
- libpango-1.0-0
|
|
- libcairo2
|
|
- libatspi2.0-0
|
|
- libgtk3.0-cil
|
|
- libgdk3.0-cil
|
|
- libx11-xcb-dev
|
|
when: grafana_rendering
|