Apache: improve munin integration

* ansible syntax
* remove duplicate tasks
* improve tasks names
This commit is contained in:
Jérémy Lecour 2017-10-07 11:15:45 +02:00
parent 3d7a544820
commit 1776b4bc24

View file

@ -1,68 +1,55 @@
--- ---
- name: munin-node and core plugins are installed - name: "Install munin-node and core plugins packages"
apt: apt:
name: "{{ item }}" name: "{{ item }}"
state: installed state: installed
with_items: with_items:
- munin-node - munin-node
- munin-plugins-core - munin-plugins-core
tags:
- apache
- munin
- name: enable munin plugins - name: "Enable Munin plugins"
file: file:
src: "/usr/share/munin/plugins/{{ item }}" src: "/usr/share/munin/plugins/{{ item }}"
dest: "/etc/munin/plugins/{{ item }}" dest: "/etc/munin/plugins/{{ item }}"
state: link state: link
with_items: with_items:
- apache_accesses - apache_accesses
- apache_processes - apache_processes
- apache_volume - apache_volume
notify: restart munin-node notify: restart munin-node
tags: tags:
- apache - apache
- munin - munin
--- - name: "Install fcgi packages for Munin graphs"
- name: install packages for Apache and Munin
apt: apt:
name: "{{ item }}" name: "{{ item }}"
state: installed state: installed
with_items: with_items:
- libapache2-mod-fcgid - libapache2-mod-fcgid
- libcgi-fast-perl - libcgi-fast-perl
notify: reload apache notify: reload apache
tags: tags:
- apache - apache
- munin - munin
- name: be sure to enable libapache2-mod-fcgid - name: "Enable libapache2-mod-fcgid"
command: a2enmod fcgid command: a2enmod fcgid
register: cmd_enable_fcgid register: cmd_enable_fcgid
changed_when: "'Module fcgid already enabled' not in cmd_enable_fcgid.stdout" changed_when: "'Module fcgid already enabled' not in cmd_enable_fcgid.stdout"
notify: restart apache notify: restart apache
tags: tags:
- apache - apache
- munin - munin
- name: change group for /var/log/munin/ - name: "Apache has access to /var/log/munin/"
file: file:
path: /var/log/munin/ path: /var/log/munin/
group: www-data group: www-data
tags: tags:
- apache - apache
- munin - 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