ansible-roles/nginx/tasks/munin_vhost.yml

37 lines
779 B
YAML

---
- name: Add munin to hosts
lineinfile:
dest: /etc/hosts
regexp: 'munin$'
line: '127.0.0.1 munin'
insertafter: EOF
- name: Ensure packages for Munin CGI are installed
apt:
name: '{{ item }}'
state: installed
with_items:
- liblwp-useragent-determined-perl
- spawn-fcgi
- name: Adjust rights for munin-cgi
file:
path: '{{ item }}'
owner: munin
group: adm
with_fileglob:
- /var/log/munin/munin-cgi-*
- name: Install Init script for Munin-fcgi
copy:
src: init.d/spawn-fcgi-munin-graph
dest: /etc/init.d/
mode: "755"
- name: Ensure that Munin-fcgi is started/stopped correctly
service:
name: spawn-fcgi-munin-graph
enabled: yes
state: started
notify: restart spawn-fcgi-munin-graph