mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-06 10:21:34 +02:00
Huge role refactoring/cleanup. Other commits will propably follow. Because some bugs will exist. Still important for longrun and also for auto docs/help/slideshow generation
This commit is contained in:
27
roles/monitor-bot-msmtp/tasks/main.yml
Normal file
27
roles/monitor-bot-msmtp/tasks/main.yml
Normal file
@@ -0,0 +1,27 @@
|
||||
- name: "create {{ health_msmtp_folder }}"
|
||||
file:
|
||||
path: "{{ health_msmtp_folder }}"
|
||||
state: directory
|
||||
mode: 0755
|
||||
|
||||
- name: create monitor-bot-msmtp.sh
|
||||
template:
|
||||
src: monitor-bot-msmtp.sh.j2
|
||||
dest: "{{ health_msmtp_folder }}monitor-bot-msmtp.sh"
|
||||
mode: '0755'
|
||||
|
||||
- name: create monitor-bot-msmtp.cymais.service
|
||||
template:
|
||||
src: monitor-bot-msmtp.service.j2
|
||||
dest: /etc/systemd/system/monitor-bot-msmtp.cymais.service
|
||||
notify: reload monitor-bot-msmtp.cymais.service
|
||||
|
||||
- name: set service_name to the name of the current role
|
||||
set_fact:
|
||||
service_name: "{{ role_name }}"
|
||||
|
||||
- name: include role for generic-timer for {{ service_name }}
|
||||
include_role:
|
||||
name: generic-timer
|
||||
vars:
|
||||
on_calendar: "{{ on_calendar_health_msmtp }}"
|
Reference in New Issue
Block a user