26 lines
723 B
YAML
26 lines
723 B
YAML
---
|
|
- name: Install munin-node
|
|
ansible.builtin.apt: name=munin-node state=present
|
|
tags: packages
|
|
|
|
# some nice things to have for munin-node on Ubuntu
|
|
# libwww-perl: for munin's nginx_status check
|
|
- name: Install munin-node deps
|
|
ansible.builtin.apt: name=libwww-perl state=present
|
|
tags: packages
|
|
|
|
- name: Create munin-node.conf
|
|
ansible.builtin.template: src=munin-node.conf.j2 dest=/etc/munin/munin-node.conf
|
|
notify:
|
|
- restart munin-node
|
|
|
|
- name: Configure munin-node
|
|
ansible.builtin.shell: munin-node-configure --shell --families=contrib,auto | sh -x
|
|
notify:
|
|
- restart munin-node
|
|
|
|
- name: Start munin-node
|
|
ansible.builtin.systemd: name=munin-node state=started enabled=true
|
|
|
|
# vim: set ts=2 sw=2:
|