browbeat/ansible/install/grafana.yml
Charles Short 8bd21961e6 Use epel when approiate
Don't install epel7 when using rhel8, only for rhel7.
Remove this patch once Centos 8 becaomes available.

Change-Id: I10a35c6201c0282f7de8fb969b608a1604581e5e
Signed-off-by: Charles Short <chucks@redhat.com>
2019-06-28 13:59:49 -04:00

12 lines
198 B
YAML

---
#
# Playbook to install Grafana
#
- hosts: grafana
remote_user: root
roles:
- {role: epel, when: ansible_distribution_major_version == '7'}
- grafana
environment: "{{proxy_env}}"