1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00
iiab/roles/munin/tasks/enable-or-disable.yml

51 lines
1.4 KiB
YAML
Raw Normal View History

2020-01-14 00:21:44 +00:00
- name: Enable & Start 'munin-node' systemd service
2019-09-14 23:58:46 +00:00
systemd:
name: munin-node
2020-01-14 00:21:44 +00:00
daemon_reload: yes
2019-09-14 23:58:46 +00:00
enabled: yes
state: started
when: munin_enabled | bool
2020-01-14 00:21:44 +00:00
- name: Disable 'munin-node' systemd service
2019-09-14 23:58:46 +00:00
systemd:
name: munin-node
enabled: no
state: stopped
when: not munin_enabled
2020-01-14 00:21:44 +00:00
# Apache
- name: Enable http://box/munin via Apache
command: a2ensite munin24.conf
when: apache_install and munin_enabled # and not nginx_enabled
- name: Disable http://box/munin via Apache
command: a2dissite munin24.conf
when: apache_install and not munin_enabled # or nginx_enabled
- name: Restart Apache systemd service ({{ apache_service }})
systemd:
name: "{{ apache_service }}" # apache2 or httpd, as set in /opt/iiab/iiab/vars/<OS>.yml
state: restarted
when: apache_install and apache_enabled
2020-01-14 00:21:44 +00:00
# NGINX
2019-09-14 23:58:46 +00:00
2020-01-14 00:21:44 +00:00
- name: Enable http://box/munin via NGINX, by installing {{ nginx_config_dir }}/munin24-nginx.conf from template
template:
src: munin24-nginx.conf.j2
dest: "{{ nginx_config_dir }}/munin24-nginx.conf" # /etc/nginx/conf.d
when: munin_enabled # and nginx_enabled
2020-01-14 00:21:44 +00:00
- name: Disable http://box/munin via NGINX, by installing {{ nginx_config_dir }}/munin24-nginx.conf
2019-09-14 23:58:46 +00:00
file:
2020-01-14 00:21:44 +00:00
path: "{{ nginx_config_dir }}/munin24-nginx.conf" # /etc/nginx/conf.d
2019-09-14 23:58:46 +00:00
state: absent
2020-01-14 00:21:44 +00:00
when: not munin_enabled
- name: Restart 'nginx' systemd service
systemd:
name: nginx
state: restarted
# when: nginx_enabled | bool