ansible-roles/haproxy/tasks/munin.yml
Jérémy Lecour ee21973371
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |2777|524|2253|2462|:+1: Reference build: <a href="https://jenkins.evolix.org/job/gitea/job/ansible-roles/job/unstable/223//ansiblelint">Evolix » ansible-roles » unstable #223</a>
gitea/ansible-roles/pipeline/head This commit looks good
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