mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
- name: "create {{health_docker_volumes_folder}}"
|
|
file:
|
|
path: "{{health_docker_volumes_folder}}"
|
|
state: directory
|
|
mode: 0755
|
|
when: run_once_health_docker_volumes is not defined
|
|
|
|
- name: create health-docker-volumes.sh
|
|
copy:
|
|
src: health-docker-volumes.sh
|
|
dest: "{{health_docker_volumes_folder}}health-docker-volumes.sh"
|
|
when: run_once_health_docker_volumes is not defined
|
|
|
|
- name: create health-docker-volumes.cymais.service
|
|
template:
|
|
src: health-docker-volumes.service.j2
|
|
dest: /etc/systemd/system/health-docker-volumes.cymais.service
|
|
notify: reload health-docker-volumes.cymais.service
|
|
when: run_once_health_docker_volumes is not defined
|
|
|
|
- name: set service_name to the name of the current role
|
|
set_fact:
|
|
service_name: "{{ role_name }}"
|
|
when: run_once_health_docker_volumes is not defined
|
|
|
|
- name: "include role for systemd-timer for {{service_name}}"
|
|
include_role:
|
|
name: systemd-timer
|
|
vars:
|
|
on_calendar: "{{on_calendar_health_docker_volumes}}"
|
|
when: run_once_health_docker_volumes is not defined
|
|
|
|
- name: run the health_docker_volumes tasks once
|
|
set_fact:
|
|
run_once_health_docker_volumes: true
|
|
when: run_once_health_docker_volumes is not defined
|