From c6288877e8275ba209602f76d5a748d41917a1b6 Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 12 Feb 2026 21:27:42 +0100 Subject: [PATCH] =?UTF-8?q?refactor=20=E2=99=BB=EF=B8=8F:=20Refactor=20tas?= =?UTF-8?q?k=20names=20for=20clarity=20and=20consistency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Renamed task labels to be more descriptive and consistent across the project, improving readability and maintainability. --- tasks/logrotate.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/logrotate.yml b/tasks/logrotate.yml index 1d5e450..1d3899a 100644 --- a/tasks/logrotate.yml +++ b/tasks/logrotate.yml @@ -1,5 +1,5 @@ --- -- name: "Proxmox | Ensure logrotate is installed" +- name: logrotate | Ensure logrotate is installed ansible.builtin.apt: name: logrotate state: present @@ -7,7 +7,7 @@ become: true when: proxmox_logrotate_enabled -- name: logrotate | pve logrotate policy +- name: logrotate | PVE logrotate policy ansible.builtin.template: src: pve-logrotate.j2 dest: "/etc/logrotate.d/99-pve-custom" @@ -18,7 +18,7 @@ when: proxmox_logrotate_enabled notify: Restart logrotate -- name: logrotate | pve-firewall logrotate policy +- name: logrotate | PVE-firewall logrotate policy ansible.builtin.template: src: pve-firewall-logrotate.j2 dest: "/etc/logrotate.d/99-pve-firewall-custom"