From b51e99b4a62ac930ef6a5454092a090df2016c22 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Thu, 29 Jul 2021 17:02:33 +0200 Subject: core/ntp: add support for local option in chrony --- roles/core/ntp/templates/chrony.conf.j2 | 3 +++ 1 file changed, 3 insertions(+) (limited to 'roles/core/ntp/templates/chrony.conf.j2') diff --git a/roles/core/ntp/templates/chrony.conf.j2 b/roles/core/ntp/templates/chrony.conf.j2 index e404da18..04571b74 100644 --- a/roles/core/ntp/templates/chrony.conf.j2 +++ b/roles/core/ntp/templates/chrony.conf.j2 @@ -47,6 +47,9 @@ allow {{ rule }} {% for rule in ntp_server.deny | default([]) %} deny {{ rule }} {% endfor %} +{% if 'local' in ntp_server %} +local {{ ntp_server.local }} +{% endif %} {% if 'bind' in ntp_server %} bindaddress {{ ntp_server.bind }} {% endif %} -- cgit v1.2.3