ansible-roles/nginx/tasks/munin_vhost.yml

41 lines
888 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
- 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: "0755"
register: install_spawn_fcgi_munin_graph
- name: Reload systemd
command: systemctl daemon-reload
when: install_spawn_fcgi_munin_graph | changed
- name: Ensure that Munin-fcgi is started/stopped correctly
service:
name: spawn-fcgi-munin-graph
enabled: yes
state: started