Files
fedora-infra_ansible/roles/graphite/statsd/tasks/main.yml
Ricky Elrod a75dc7ccd2 dnf instead of yum everywhere
Signed-off-by: Ricky Elrod <codeblock@fedoraproject.org>
2016-06-29 12:38:14 +00:00

15 lines
244 B
YAML

---
- name: install needed packages
dnf: pkg={{ item }} state=present
with_items:
- statsd
tags:
- packages
- statsd
- name: Set statsd to run on boot
service: name=statsd enabled=yes state=running
tags:
- service
- statsd