mirror of
https://github.com/roles-ansible/ansible_role_restic/
synced 2024-11-05 11:33:28 +01:00
fix crontab entries
This commit is contained in:
parent
8ab81be40e
commit
c7a404b61c
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue