From edf09e16c283e8c747bc1fb325b322d171d2c948 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 13 Jan 2025 11:21:20 +0100 Subject: [PATCH] Fix logrotate configuration file path for chill Updated the destination path for the logrotate configuration file to the correct directory. This ensures proper placement under `/etc/logrotate.d/` and resolves potential misconfiguration issues. --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index be15e44..a963e7f 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -39,7 +39,7 @@ - name: Configure logrotate for chill ansible.builtin.template: - dest: /etc/logrotate/logrotate.d/chill + dest: /etc/logrotate.d/chill src: logrotate/chill owner: root group: root