This commit refactors task names across multiple files to improve clarity and maintain consistency, ensuring that each task name accurately reflects its purpose and using the latest `ansible.builtin` modules where applicable.
9 lines
197 B
YAML
9 lines
197 B
YAML
---
|
|
- name: logrotate | Configure Proxmox logrotate limits
|
|
ansible.builtin.template:
|
|
src: logrotate-pve.j2
|
|
dest: /etc/logrotate.d/proxmox
|
|
owner: root
|
|
group: root
|
|
mode: "0644"
|