remove interface ignore wildcard because it breaks ntp sync with external servers

This commit is contained in:
Gregory Colpart 2017-09-14 19:09:22 +02:00
parent dbbd0e1783
commit 76dda62001
2 changed files with 0 additions and 7 deletions

View File

@ -1,5 +1,4 @@
--- ---
ntpd_only_local: True
ntpd_servers: ntpd_servers:
- 'ntp.evolix.net' - 'ntp.evolix.net'
ntpd_acls: ntpd_acls:

View File

@ -2,11 +2,6 @@
driftfile /var/lib/ntp/ntp.drift driftfile /var/lib/ntp/ntp.drift
{% if ntpd_only_local is defined and ntpd_only_local %}
# Only listen on 127.0.0.1 and ::1
interface ignore wildcard
{% endif %}
# Enable this if you want statistics to be logged. # Enable this if you want statistics to be logged.
#statsdir /var/log/ntpstats/ #statsdir /var/log/ntpstats/
@ -23,7 +18,6 @@ filegen clockstats file clockstats type day enable
# pool: <http://www.pool.ntp.org/join.html> # pool: <http://www.pool.ntp.org/join.html>
#server pool.ntp.org #server pool.ntp.org
{% for server in ntpd_servers %} {% for server in ntpd_servers %}
server {{ server }} server {{ server }}
{% endfor %} {% endfor %}