mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-01 05:51:56 +08:00
15 lines
244 B
YAML
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=started
|
|
tags:
|
|
- service
|
|
- statsd
|