Files
fedora-infra_ansible/roles/graphite/statsd/tasks/main.yml
Ricky Elrod cdec020f76 this is all going to fail miserably
Signed-off-by: Ricky Elrod <codeblock@fedoraproject.org>
2015-06-02 12:51:55 +00:00

15 lines
244 B
YAML

---
- name: install needed packages
yum: 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