Merge "borg-backup: randomise time on a per-server basis"

This commit is contained in:
Zuul 2021-08-24 20:22:08 +00:00 committed by Gerrit Code Review
commit 74713e4d31

View File

@ -67,7 +67,7 @@
# This should space out the backups so they run in a round-robbin
# evenly through the day to each of the different backup servers
hour: '{{ ((5 + ((24 / ansible_loop.length) * ansible_loop.index0 )) % 24) | int}}'
minute: '{{ 59|random(seed=item) }}'
minute: '{{ 59|random(seed=inventory_hostname) }}'
with_inventory_hostnames: borg-backup-server
loop_control:
extended: yes