ansible-playbooks/roles/ntp-chrony/templates/logrotate.conf.j2
2025-12-13 23:49:39 +01:00

18 lines
383 B
Django/Jinja

# {{ ansible_managed }}
# Logrotate configuration for chrony logs
{{ ntp_logdir }}/*.log {
{{ ntp_logrotate_frequency }}
rotate {{ ntp_logrotate_rotate }}
missingok
notifempty
{% if ntp_logrotate_compress %}
compress
delaycompress
{% endif %}
sharedscripts
postrotate
/usr/bin/killall -HUP chronyd 2>/dev/null || true
endscript
}