ansible-roles/memcached/tasks/munin.yml

36 lines
755 B
YAML
Raw Normal View History

2017-06-02 10:45:01 +02:00
---
- 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: "{{ item }}"
state: present
with_items:
- 'munin-plugins-extra'
- 'libcache-memcached-perl'
- name: Enable core Munin plugins
file:
src: '/usr/share/munin/plugins/memcached_'
dest: /etc/munin/plugins/{{ item }}
state: link
with_items:
- memcached_bytes
- memcached_counters
- memcached_rates
notify: restart munin-node
when: munin_node_plugins_config.stat.exists
tags:
- memcached
- munin