forked from infra/ansible
16 lines
310 B
Plaintext
16 lines
310 B
Plaintext
|
{% for srv in ntp_servers %}
|
||
|
server {{ srv }} iburst
|
||
|
{% endfor %}
|
||
|
{% if ntp_peers is defined %}
|
||
|
|
||
|
{% for peer in ntp_peers %}
|
||
|
peer {{ peer }}
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
|
||
|
restrict default kod nomodify notrap nopeer noquery
|
||
|
restrict -6 default kod nomodify notrap nopeer noquery
|
||
|
|
||
|
restrict 127.0.0.1
|
||
|
restrict -6 ::1
|