2019-05-25 13:33:45 +00:00
|
|
|
# Add mirror rsync cron jobs (hourly and daily)
|
|
|
|
---
|
|
|
|
- name: Add mirror rsync cron job that run hourly
|
2019-03-01 18:44:07 +00:00
|
|
|
copy:
|
2019-05-25 13:33:45 +00:00
|
|
|
src: ../files/mirror-rsync-hourly
|
|
|
|
dest: /etc/cron.daily/mirror-rsync-hourly
|
2019-03-01 18:44:07 +00:00
|
|
|
owner: root
|
2019-05-25 13:33:45 +00:00
|
|
|
mode: 744
|
|
|
|
|
|
|
|
- name: Add mirror rsync cron job that run daily
|
|
|
|
copy:
|
|
|
|
src: ../files/mirror-rsync-daily
|
|
|
|
dest: /etc/cron.daily/mirror-rsync-daily
|
|
|
|
owner: root
|
|
|
|
mode: 744
|