22 lines
396 B
YAML
22 lines
396 B
YAML
---
|
|
|
|
- name: Put nsd plugin configuration
|
|
ansible.builtin.template:
|
|
src: nsd.j2
|
|
dest: /etc/munin/plugin-conf.d/nsd
|
|
owner: root
|
|
group: root
|
|
mode: "0o640"
|
|
notify:
|
|
- Restart munin-node
|
|
|
|
- name: Put nsd scripts
|
|
ansible.builtin.copy:
|
|
src: files/nsd
|
|
dest: /etc/munin/plugins/nsd
|
|
owner: root
|
|
group: root
|
|
mode: "0o755"
|
|
notify:
|
|
- Restart munin-node
|