Michael Grote
7a24089031
Reviewed-on: #584 Co-authored-by: Michael Grote <michael.grote@posteo.de> Co-committed-by: Michael Grote <michael.grote@posteo.de>
29 lines
613 B
YAML
29 lines
613 B
YAML
---
|
|
- name: install packages
|
|
ansible.builtin.apt:
|
|
name: munin-node
|
|
state: present
|
|
notify:
|
|
- munin-node-configure --shell
|
|
- munin-node-configure --shell - 2
|
|
|
|
- name: create directories
|
|
ansible.builtin.file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
owner: root
|
|
group: root
|
|
mode: "0644"
|
|
loop:
|
|
- /etc/munin
|
|
- /etc/munin/plugin-conf.d
|
|
- /etc/munin/plugins
|
|
|
|
- name: Copy munin-node configuration.
|
|
ansible.builtin.template:
|
|
src: munin-node.conf.j2
|
|
dest: /etc/munin/munin-node.conf
|
|
owner: root
|
|
group: root
|
|
mode: "0644"
|
|
notify: restart munin-node
|