mirror of
https://github.com/roles-ansible/ansible_role_ntp.git
synced 2024-08-16 12:59:49 +02:00
20 lines
479 B
Text
20 lines
479 B
Text
|
#####################################
|
||
|
## ##
|
||
|
## THIS FILE IS MANAGED BY ANSIBLE ##
|
||
|
## ##
|
||
|
#####################################
|
||
|
|
||
|
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 -%}
|
||
|
statistics clockstats cryptostats loopstats peerstats
|
||
|
{%- endif -%}
|