2014-08-16 23:35:57 +02:00
|
|
|
---
|
|
|
|
- name: Install munin package
|
2015-05-25 23:02:43 +02:00
|
|
|
apt: name={{ item }} state=latest
|
2015-08-31 23:10:16 +02:00
|
|
|
when: ansible_os_family == "Debian"
|
2014-08-16 23:35:57 +02:00
|
|
|
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:
|