From c7a404b61c4ab071ff9b7bf65cfb47b8b716f330 Mon Sep 17 00:00:00 2001 From: Dick Visser Date: Mon, 6 Apr 2020 15:33:07 +0200 Subject: [PATCH] fix crontab entries --- tasks/distribution/Linux.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/distribution/Linux.yml b/tasks/distribution/Linux.yml index e1852dc..fa6f5a3 100644 --- a/tasks/distribution/Linux.yml +++ b/tasks/distribution/Linux.yml @@ -35,10 +35,10 @@ cron: name: 'arillso.restic backup {{ item.name }}' job: 'CRON=true {{ restic_script_dir }}/backup-{{ item.name }}.sh' - minute: '{{ schedule_minute | default("*") }}' - hour: '{{ schedule_hour | default("*") }}' - weekday: '{{ schedule_weekday | default("*") }}' - month: '{{ schedule_month | default("*") }}' + minute: '{{ item.schedule_minute | default("*") }}' + hour: '{{ item.schedule_hour | default("*") }}' + weekday: '{{ item.schedule_weekday | default("*") }}' + month: '{{ item.schedule_month | default("*") }}' state: present become: true no_log: true