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.
14 lines
562 B
14 lines
562 B
# {{ ansible_managed }}
|
|
driftfile /var/lib/ntp/ntp.drift
|
|
leapfile /usr/share/zoneinfo/leap-seconds.list
|
|
statistics loopstats peerstats clockstats
|
|
filegen loopstats file loopstats type day enable
|
|
filegen peerstats file peerstats type day enable
|
|
filegen clockstats file clockstats type day enable
|
|
{% for server in ntp_servers %}pool {{ server }} iburst
|
|
{% endfor %}
|
|
restrict -4 default kod notrap nomodify nopeer noquery limited
|
|
restrict -6 default kod notrap nomodify nopeer noquery limited
|
|
restrict 127.0.0.1
|
|
restrict ::1
|
|
restrict source notrap nomodify noquery
|
|
|