35 lines
1006 B
Django/Jinja
35 lines
1006 B
Django/Jinja
# {{ ansible_managed }}
|
|
# /etc/ntp.conf, configuration for ntpd; see ntp.conf(5) for help
|
|
|
|
driftfile /var/lib/ntp/ntp.drift
|
|
keys /etc/ntp.keys
|
|
|
|
# Enable this if you want statistics to be logged.
|
|
#statsdir /var/log/ntpstats/
|
|
|
|
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
|
|
|
|
{% if ntp_broadcast_key is defined %}
|
|
broadcastclient
|
|
trustedkey 22
|
|
{% else %}
|
|
# You do need to talk to an NTP server or two (or three).
|
|
{% for server in ntp_servers %}
|
|
server {{ server }} iburst
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
# By default, exchange time with everybody, but don't allow configuration.
|
|
restrict -4 default kod notrap nomodify nopeer noquery limited
|
|
restrict -6 default kod notrap nomodify nopeer noquery limited
|
|
|
|
# Local users may interrogate the ntp server more closely.
|
|
restrict 127.0.0.1
|
|
restrict ::1
|
|
|
|
# Needed for adding pool entries
|
|
restrict source notrap nomodify noquery
|