mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
32 lines
1.2 KiB
YAML
32 lines
1.2 KiB
YAML
- name: "create {{health_docker_container_folder}}"
|
|
file:
|
|
path: "{{health_docker_container_folder}}"
|
|
state: directory
|
|
mode: 0755
|
|
when: run_once_health_docker_container is not defined
|
|
|
|
- name: create health-docker-container.sh
|
|
copy:
|
|
src: health-docker-container.sh
|
|
dest: "{{health_docker_container_folder}}health-docker-container.sh"
|
|
when: run_once_health_docker_container is not defined
|
|
|
|
- name: create health-docker-container.service
|
|
template: src=health-docker-container.service.j2 dest=/etc/systemd/system/health-docker-container.service
|
|
notify: reload health-docker-container.service
|
|
when: run_once_health_docker_container is not defined
|
|
|
|
- name: create health-docker-container.timer
|
|
template:
|
|
src: health-docker-container.timer.j2
|
|
dest: "/etc/systemd/system/health-docker-container.timer"
|
|
register: health_docker_container_timer
|
|
changed_when: health_docker_container_timer.changed or activate_all_timers
|
|
notify: restart health-docker-container.timer
|
|
when: run_once_health_docker_container is not defined
|
|
|
|
- name: run the health_docker_container tasks once
|
|
set_fact:
|
|
run_once_health_docker_container: true
|
|
when: run_once_health_docker_container is not defined
|