mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
13 lines
304 B
Django/Jinja
13 lines
304 B
Django/Jinja
{% 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 %}
|