- name: "create {{health_disc_space_folder}}"
  file:
    path: "{{health_disc_space_folder}}"
    state: directory
    mode: 0755

- name: create health-disc-space.sh
  copy:
    src: health-disc-space.sh
    dest: "{{health_disc_space_folder}}health-disc-space.sh"

- name: create health-disc-space.cymais.service
  template: 
    src: health-disc-space.service.j2
    dest: /etc/systemd/system/health-disc-space.cymais.service
  notify: reload health-disc-space.cymais.service

- name: set service_name to the name of the current role
  set_fact:
    service_name: "{{ role_name }}"

- name: "include role for systemd-timer for {{service_name}}"
  include_role:
    name: systemd-timer
  vars:
    on_calendar:  "{{on_calendar_health_disc_space}}"