123456789101112131415161718 |
- config dhcp_ntp_server 'dhcp_ntp_server'
- option disabled '0'
- option iburst 'yes'
- config makestep 'makestep'
- option threshold '1'
- option limit '3'
- {% for server in chrony.servers %}
- config pool
- option hostname '{{ server.address }}'
- option iburst '{% if server.iburst is defined and server.iburst %}yes{% else %}no{% endif %}'
- option nts '{% if server.nts is defined and server.nts %}yes{% else %}no{% endif %}'
- {% endfor %}
|