- name: pull cleanup-failed-docker-backups.git
  git:
    repo: "https://github.com/kevinveenbirkenbach/cleanup-failed-docker-backups.git"
    dest: "{{backup_docker_to_local_cleanup_folder}}"
    update: yes
  ignore_errors: true
  when: run_once_cleanup_failed_docker_backups is not defined

- name: configure cleanup-failed-docker-backups.cymais.service
  template: 
    src: cleanup-failed-docker-backups.service.j2
    dest: /etc/systemd/system/cleanup-failed-docker-backups.cymais.service
  notify: reload cleanup-failed-docker-backups.cymais.service daemon
  when: run_once_cleanup_failed_docker_backups is not defined

- 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}}"
  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