5 lines
346 B
Django/Jinja
5 lines
346 B
Django/Jinja
# {{ ansible_managed }}
|
|
{% for i in rsync_mirror %}
|
|
{{ i.cron_time }} * * * mirror rsync --times --links --hard-links --partial --block-size=8192 --recursive --exclude *-dvd-* --exclude source/ --verbose --stats --delete-after rsync://{{ i.rsync_host }}/{{ i.rsync_path }} {{ i.dest }} | tee -a "/var/log/mirror/{{ i.name }}.log"
|
|
{% endfor %}
|