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

39 lines
912 B
YAML

---
- name: Choose packages (Oracle)
ansible.builtin.set_fact:
multi: "multi_"
when: memcached_instance_name is defined
- name: is Munin present ?
ansible.builtin.stat:
path: /etc/munin/plugin-conf.d/munin-node
check_mode: no
register: munin_node_plugins_config
tags:
- memcached
- munin
- block:
- name: Install munin-plugins-extra and libcache-memcached-perl for Munin
ansible.builtin.apt:
name:
- 'munin-plugins-extra'
- 'libcache-memcached-perl'
state: present
- name: Enable core Munin plugins
ansible.builtin.file:
src: '/usr/share/munin/plugins/memcached_'
dest: /etc/munin/plugins/{{ multi }}{{ item }}
state: link
loop:
- memcached_bytes
- memcached_counters
- memcached_rates
notify: restart munin-node
when: munin_node_plugins_config.stat.exists
tags:
- memcached
- munin