mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-24 10:31:56 +08:00
16 lines
263 B
YAML
16 lines
263 B
YAML
---
|
|
|
|
- name: install collectd-bind
|
|
yum: name=collectd-bind state=present
|
|
tags:
|
|
- packages
|
|
- collectd
|
|
|
|
- name: Copy in /etc/collectd.d/bind.conf
|
|
copy: >
|
|
src=bind.conf
|
|
dest=/etc/collectd.d/bind.conf
|
|
tags:
|
|
- collectd
|
|
notify: restart collectd
|