refactor ♻️: Refactor task names for clarity and consistency
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 11s
Gitleaks Scan / gitleaks (push) Successful in 5s
ai-reviews / Review PR (pull_request) Successful in 33s
Markdown Lint / markdown-lint (push) Successful in 5s
ansible-lint / Ansible Lint (pull_request) Successful in 11s
Gitleaks Scan / gitleaks (pull_request) Successful in 5s
Markdown Lint / markdown-lint (pull_request) Successful in 5s

Renamed task labels to be more descriptive and consistent across the project, improving readability and maintainability.
This commit is contained in:
2026-02-12 21:27:42 +01:00
parent c7a4e36b88
commit c6288877e8

View File

@@ -1,5 +1,5 @@
--- ---
- name: "Proxmox | Ensure logrotate is installed" - name: logrotate | Ensure logrotate is installed
ansible.builtin.apt: ansible.builtin.apt:
name: logrotate name: logrotate
state: present state: present
@@ -7,7 +7,7 @@
become: true become: true
when: proxmox_logrotate_enabled when: proxmox_logrotate_enabled
- name: logrotate | pve logrotate policy - name: logrotate | PVE logrotate policy
ansible.builtin.template: ansible.builtin.template:
src: pve-logrotate.j2 src: pve-logrotate.j2
dest: "/etc/logrotate.d/99-pve-custom" dest: "/etc/logrotate.d/99-pve-custom"
@@ -18,7 +18,7 @@
when: proxmox_logrotate_enabled when: proxmox_logrotate_enabled
notify: Restart logrotate notify: Restart logrotate
- name: logrotate | pve-firewall logrotate policy - name: logrotate | PVE-firewall logrotate policy
ansible.builtin.template: ansible.builtin.template:
src: pve-firewall-logrotate.j2 src: pve-firewall-logrotate.j2
dest: "/etc/logrotate.d/99-pve-firewall-custom" dest: "/etc/logrotate.d/99-pve-firewall-custom"