2023-11-16 17:07:28 +01:00
|
|
|
- name: pull cleanup-failed-docker-backups.git
|
|
|
|
git:
|
|
|
|
repo: "https://github.com/kevinveenbirkenbach/cleanup-failed-docker-backups.git"
|
2023-11-17 12:35:39 +01:00
|
|
|
dest: "{{backup_docker_to_local_cleanup_folder}}"
|
2023-11-16 17:07:28 +01:00
|
|
|
update: yes
|
|
|
|
ignore_errors: true
|
2023-12-12 15:10:11 +01:00
|
|
|
when: run_once_cleanup_failed_docker_backups is not defined
|
2023-11-16 17:07:28 +01:00
|
|
|
|
2024-01-10 11:18:38 +01:00
|
|
|
- name: configure cleanup-failed-docker-backups.cymais.service
|
2023-11-16 17:07:28 +01:00
|
|
|
template:
|
|
|
|
src: cleanup-failed-docker-backups.service.j2
|
2024-01-10 11:18:38 +01:00
|
|
|
dest: /etc/systemd/system/cleanup-failed-docker-backups.cymais.service
|
|
|
|
notify: reload cleanup-failed-docker-backups.cymais.service daemon
|
2023-12-12 15:10:11 +01:00
|
|
|
when: run_once_cleanup_failed_docker_backups is not defined
|
|
|
|
|
2024-01-04 13:27:07 +01:00
|
|
|
- name: set service_name to the name of the current role
|
|
|
|
set_fact:
|
|
|
|
service_name: "{{ role_name }}"
|
|
|
|
when: run_once_cleanup_failed_docker_backups is not defined
|
|
|
|
|
|
|
|
- name: "include role for systemd-timer for {{service_name}}"
|
|
|
|
include_role:
|
|
|
|
name: systemd-timer
|
|
|
|
vars:
|
|
|
|
on_calendar: "{{on_calendar_cleanup_failed_docker}}"
|
2023-12-26 03:31:30 +01:00
|
|
|
when: run_once_cleanup_failed_docker_backups is not defined
|
|
|
|
|
|
|
|
- name: run the cleanup_failed_docker_backups tasks once
|
|
|
|
set_fact:
|
|
|
|
run_once_cleanup_failed_docker_backups: true
|
|
|
|
when: run_once_cleanup_failed_docker_backups is not defined
|