ansible-personal/roles/munin/tasks/munin-node.yml
Alan Orth def8d83d49
roles/munin: Use apt module explicitly
Instead of using dynamic hack to use the package manager for the
current host. We only have Ubuntu here anyways.

Signed-off-by: Alan Orth <alan.orth@gmail.com>
2015-05-26 00:02:43 +03:00

29 lines
739 B
YAML

---
- name: Install munin-node
apt: name={{ item }} state=latest
when: ansible_distribution == "Ubuntu"
with_items:
- munin-node
# some nice things to have for munin-node on Ubuntu
- name: Install munin-node deps
when: ansible_distribution == "Ubuntu"
apt: name={{ item }} state=present
with_items:
- libwww-perl #for munin's nginx_status check
- name: Create munin-node.conf
template: src=munin-node.conf.j2 dest=/etc/munin/munin-node.conf
notify:
- restart munin-node
- name: Configure munin-node
shell: munin-node-configure --shell --families=contrib,auto | sh -x
notify:
- restart munin-node
- name: Start munin-node
service: name=munin-node state=started enabled=true
# vim: set ts=2 sw=2: