mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-28 12:32:50 +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=running
|
|
tags:
|
|
- service
|
|
- statsd
|