mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Another big round of refactoring and cleaning...
This commit is contained in:
43
roles/sys-hlth-webserver/tasks/main.yml
Normal file
43
roles/sys-hlth-webserver/tasks/main.yml
Normal file
@@ -0,0 +1,43 @@
|
||||
- name: Install required Python modules
|
||||
pacman:
|
||||
name: python-requests
|
||||
state: present
|
||||
when: run_once_health_nginx is not defined
|
||||
|
||||
- name: "create {{ health_nginx_folder }}"
|
||||
file:
|
||||
path: "{{ health_nginx_folder }}"
|
||||
state: directory
|
||||
mode: 0755
|
||||
when: run_once_health_nginx is not defined
|
||||
|
||||
- name: create sys-hlth-webserver.py
|
||||
template:
|
||||
src: sys-hlth-webserver.py.j2
|
||||
dest: "{{ health_nginx_folder }}sys-hlth-webserver.py"
|
||||
when: run_once_health_nginx is not defined
|
||||
|
||||
- name: create sys-hlth-webserver.cymais.service
|
||||
template:
|
||||
src: sys-hlth-webserver.service.j2
|
||||
dest: /etc/systemd/system/sys-hlth-webserver.cymais.service
|
||||
notify: reload sys-hlth-webserver.cymais.service
|
||||
when: run_once_health_nginx is not defined
|
||||
|
||||
- name: "set 'service_name' to '{{ role_name }}'"
|
||||
set_fact:
|
||||
service_name: "{{ role_name }}"
|
||||
when: run_once_health_nginx is not defined
|
||||
|
||||
- name: "include role for sys-timer for {{service_name}}"
|
||||
include_role:
|
||||
name: sys-timer
|
||||
vars:
|
||||
on_calendar: "{{on_calendar_health_nginx}}"
|
||||
when: run_once_health_nginx is not defined
|
||||
|
||||
- name: run the health_nginx tasks once
|
||||
set_fact:
|
||||
run_once_health_nginx: true
|
||||
when: run_once_health_nginx is not defined
|
||||
|
Reference in New Issue
Block a user