reprepro: fix cron config path and randomise times better

The config should use the full path to the config directory, append
/etc/reprepro to the job.

Currently all the reprepro jobs hash to the same start time because it
uses the hostname as a seed.  Use the unique string name as the seed
so each job starts at a unique time.

Change-Id: If2745d0cd274f390dbff6337b7a44093b5919908
This commit is contained in:
Ian Wienand 2020-10-29 09:09:28 +11:00
parent 3d3f1def31
commit 3ddbba92ae

View File

@ -2,6 +2,6 @@
cron:
name: '{{ _string_name }} reprepro mirror sync'
state: present
job: 'flock -n /var/run/reprepro/{{ _dir }}.lock reprepro-mirror-update {{ _dir }} {{ _volume }} >> /var/log/reprepro/{{ _dir }}.log 2>&1'
job: 'flock -n /var/run/reprepro/{{ _dir }}.lock reprepro-mirror-update /etc/reprepro/{{ _dir }} {{ _volume }} >> /var/log/reprepro/{{ _dir }}.log 2>&1'
hour: '*/2'
minute: '{{ 45 | random(seed=inventory_hostname) }}'
minute: '{{ 45 | random(seed=_string_name) }}'