ansible-personal/roles/munin/tasks/munin.yml
Alan Orth 60b8ecdd4c
Initial commit
Signed-off-by: Alan Orth <alan.orth@gmail.com>
2014-08-17 00:35:57 +03:00

11 lines
276 B
YAML

---
- name: Install munin package
action: "{{ ansible_pkg_mgr }} name={{ item }} state=latest"
with_items:
- munin
- name: Create munin configuration file
template: src=munin.conf.j2 dest=/etc/munin/munin.conf owner=root group=root mode=0644
# vim: set ts=2 sw=2: