ansible-roles/nginx/tasks/munin_vhost.yml

37 lines
789 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: present
with_items:
- liblwp-useragent-determined-perl
- libcgi-fast-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: systemd/spawn-fcgi-munin-graph.service
dest: /etc/systemd/system/spawn-fcgi-munin-graph.service
- name: Enable and start Munin-fcgi
systemd:
name: spawn-fcgi-munin-graph
daemon_reload: yes
enabled: yes
state: started