ansible-roles/memcached/tasks/munin.yml
Jérémy Lecour 2ed77c60f0 Improve Ansible syntax
replace « x | changed » by « x is changed »
add explicit « bool » filter
use « length » filter instead of string comparison
2021-05-09 23:06:42 +02:00

39 lines
850 B
YAML

---
- name: Choose packages (Oracle)
set_fact:
multi: "multi_"
when: memcached_instance_name | length > 0
- name: is Munin present ?
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
apt:
name:
- 'munin-plugins-extra'
- 'libcache-memcached-perl'
state: present
- name: Enable core Munin plugins
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