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
304 B
12 lines
304 B
{% for server in ntp_servers %}
|
|
server {{ server }} iburst
|
|
{% endfor %}
|
|
keyfile {{ ntp_chrony_keyfile }}
|
|
driftfile /var/lib/chrony/drift
|
|
makestep 1.0 3
|
|
rtcsync
|
|
{% if samba_role is defined and samba_role in ['dc','rodc'] %}
|
|
# Running Samba DC
|
|
ntpsigndsocket /var/lib/samba/ntp_signd
|
|
allow all
|
|
{% endif %}
|
|
|