ansible-roles/apache/tasks/munin.yml

69 lines
1.3 KiB
YAML
Raw Normal View History

2017-08-12 18:51:15 +02:00
---
- name: munin-node and core plugins are installed
apt:
name: "{{ item }}"
state: installed
with_items:
- munin-node
- munin-plugins-core
- name: enable munin plugins
file:
src: "/usr/share/munin/plugins/{{ item }}"
dest: "/etc/munin/plugins/{{ item }}"
state: link
with_items:
- apache_accesses
- apache_processes
- apache_volume
notify: restart munin-node
2017-08-12 18:51:15 +02:00
tags:
- apache
- munin
---
- name: install packages for Apache and Munin
apt:
name: "{{ item }}"
state: installed
with_items:
- libapache2-mod-fcgid
- libcgi-fast-perl
notify: reload apache
tags:
- apache
- munin
2017-07-20 09:38:05 +02:00
- name: be sure to enable libapache2-mod-fcgid
command: a2enmod fcgid
2017-07-20 09:40:45 +02:00
register: cmd_enable_fcgid
changed_when: "'Module fcgid already enabled' not in cmd_enable_fcgid.stdout"
2017-07-20 09:38:05 +02:00
notify: restart apache
tags:
- apache
- munin
- name: change group for /var/log/munin/
file:
2017-07-20 09:38:39 +02:00
path: /var/log/munin/
group: www-data
2017-07-20 09:38:39 +02:00
tags:
- apache
- munin
- name: install munin plugins
file:
src: "/etc/munin/plugins/{{ item }}"
dest: "/usr/share/munin/plugins/{{ item }}"
state: link
with_items:
- apache_accesses
- apache_processes
- apache_volume
notify: restart munin-node
tags:
- apache
- munin