ansible/roles/munin/tasks/main.yml

17 lines
348 B
YAML

---
- name: Gather instance facts
setup:
- block:
- name: Setup munin
template:
src: munin.conf
dest: "/opt/munin/munin.conf"
owner: munin
group: munin
mode: 0600
with_items: groups['frames']
notify:
- generate munin graphs
tags:
- munin-config