24 lines
457 B
Text
24 lines
457 B
Text
|
{{ ansible_managed | comment }}
|
||
|
|
||
|
{% for pool in chronyd__pools %}
|
||
|
pool {{ pool }} iburst
|
||
|
{% endfor %}
|
||
|
|
||
|
keyfile {{ chronyd__key_file }}
|
||
|
dritfile {{ chronyd__drift_file }}
|
||
|
ntsdumpdir {{ chronyd__nts_dump_dir }}
|
||
|
|
||
|
log tracking measurements statistics
|
||
|
|
||
|
maxupdateskew {{ chronyd__max_update_skew | float }}
|
||
|
|
||
|
{% if chronyd__rtcsync %}
|
||
|
rtcsync
|
||
|
{% endif %}
|
||
|
|
||
|
leapsectz right/UTC
|
||
|
|
||
|
{% for network in chronyd__allow_networks %}
|
||
|
allow {{ network | ipaddr }}
|
||
|
{% endfor %}
|