browbeat/ansible/install/statsd.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

11 lines
260 B
YAML

---
#
# Installs a StatsD server on the StatsD host with the default port, does not secure it
- hosts: statsd
remote_user: root
roles:
- {role: epel, when: ansible_distribution_major_version == '7'}
- statsd-install
environment: "{{proxy_env}}"