ansible-role-chrony/templates/chrony.conf.j2

14 lines
300 B
Text
Raw Normal View History

2024-08-07 08:58:44 +00:00
# {{ ansible_managed }}
{% for option, value in chrony_full_config.items() if value %}
{% if value is sameas true %}
{{ option }}
{% elif value is iterable and value is not string %}
{% for v in value %}
{{ option }} {{ v }}
{% endfor %}
{% else %}
{{ option }} {{ value }}
{% endif %}
{% endfor %}