2014-08-17 00:35:57 +03:00
|
|
|
---
|
|
|
|
- name: Install munin package
|
2015-05-26 00:02:43 +03:00
|
|
|
apt: name={{ item }} state=latest
|
2015-09-01 00:10:16 +03:00
|
|
|
when: ansible_os_family == "Debian"
|
2014-08-17 00:35:57 +03:00
|
|
|
with_items:
|
|
|
|
- munin
|
2016-08-14 16:33:48 +03:00
|
|
|
tags: packages
|
2014-08-17 00:35:57 +03:00
|
|
|
|
|
|
|
- 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:
|