ansible-roles/haproxy/tasks/munin.yml
Jérémy Lecour ee21973371 Use FQCN
Fully Qualified Collection Name
2023-03-20 23:33:19 +01:00

29 lines
613 B
YAML

---
- name: Install Munin plugin and dependencies
ansible.builtin.apt:
name:
- munin-plugins-extra
- liblwp-useragent-determined-perl
state: present
tags:
- haproxy
- name: Enable Munin Haproxy plugins
ansible.builtin.file:
src: /usr/share/munin/plugins/haproxy_ng
dest: /etc/munin/plugins/haproxy_ng
force: yes
state: link
notify: restart munin-node
tags:
- haproxy
- name: Copy Munin Haproxy config
ansible.builtin.template:
src: munin.conf.j2
dest: /etc/munin/plugin-conf.d/haproxy
mode: "0644"
notify: restart munin-node
tags:
- haproxy