Merge pull request 'NTP: simple fixes (logdir + local stratum + logchange support)' (#101) from ntp into master

Reviewed-on: #101
master
jeltz 2 years ago
commit 2e10714a79

@ -11,6 +11,7 @@
- 1.pool.ntp.org
- 2.pool.ntp.org
- 3.pool.ntp.org
chronyd__local_stratum: 10
roles:
- chronyd

@ -3,7 +3,9 @@ chronyd__pools: []
chronyd__key_file: /etc/chrony/chrony.keys
chronyd__drift_file: /var/lib/chrony/chrony.drift
chronyd__nts_dump_dir: /var/lib/chrony
chronyd__log_dir: /var/log/chrony
chronyd__max_update_skew: 100.0
chronyd__rtcsync: true
chronyd__allow_networks: []
chronyd__log_change_seconds: 0.5
...

@ -7,6 +7,7 @@ pool {{ pool }} iburst
keyfile {{ chronyd__key_file }}
driftfile {{ chronyd__drift_file }}
ntsdumpdir {{ chronyd__nts_dump_dir }}
logdir {{ chronyd__log_dir }}
log tracking measurements statistics
@ -16,6 +17,12 @@ maxupdateskew {{ chronyd__max_update_skew | float }}
rtcsync
{% endif %}
{% if chronyd__local_stratum is defined %}
local stratum {{ chronyd__local_stratum | int }}
{% endif %}
logchange {{ chronyd__log_change_seconds | float }}
leapsectz right/UTC
{% for network in chronyd__allow_networks %}

Loading…
Cancel
Save