1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_ntp.git synced 2024-08-16 12:59:49 +02:00
ansible_role_ntp/templates/ntp.conf.j2
2022-11-17 00:02:19 +01:00

21 lines
587 B
Django/Jinja

#####################################
## ##
## THIS FILE IS MANAGED BY ANSIBLE ##
## ##
## It is about time ##
## ##
#####################################
# > galaxy.ansible.com/do1jlr/ntp < #
driftfile {{ ntp_driftfile }}
{% for restrict_ip in ntp_restrict %}
restrict {{ restrict_ip }}
{% endfor %}
{% for pool_server in ntp_servers %}
server {{ pool_server }}
{% endfor %}
{% if ntp_statistics | bool %}
statistics clockstats cryptostats loopstats peerstats
{% endif %}