You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
276 B
12 lines
276 B
5 years ago
|
{% for server in ntp_servers %}
|
||
|
server {{ server }} iburst
|
||
|
{% endfor %}
|
||
|
{% if ansible_os_family == 'Debian' %}
|
||
|
keyfile /etc/chrony/chrony.keys
|
||
|
{% elif ansible_os_family == 'RedHat' %}
|
||
|
keyfile /etc/chrony.keys
|
||
|
{% endif %}
|
||
|
driftfile /var/lib/chrony/drift
|
||
|
makestep 1.0 3
|
||
|
rtcsync
|