{% if ntp_refclocks is defined %} ### Sensors {% for refclock in ntp_refclocks %} sensor {{ refclock.device }}{% if 'options' in refclock %} {{ refclock.options }}{% endif %}{{ '' }} {% endfor %} {% endif %} {% if ntp_client is defined %} ### Client {% if 'servers' in ntp_client %} {% for server in ntp_client.servers %} server {{ server.name }}{% if 'options' in server %} {{ server.options }}{% endif %}{{ '' }} {% endfor %} {% endif %} {% if 'pools' in ntp_client %} {% for pool in ntp_client.pools %} servers {{ pool.name }}{% if 'options' in pool %} {{ pool.options }}{% endif %}{{ '' }} {% endfor %} {% endif %} {% endif %} {% if ntp_server is defined %} ### Server listen on {{ ntp_server.bind | default('*') }} {% endif %}