infra/roles/munin_server/tasks/main.yml

16 lines
278 B
YAML

---
- name: Install munin
apt:
state: present
name: munin
- name: Gather facts from all hosts
setup:
delegate_to: "{{ item }}"
delegate_facts: true
loop: "{{ groups['all'] }}"
- name: Configure munin
template: src=munin.conf.j2 dest=/etc/munin/munin.conf