Files
ansible_role_proxmox_provision/tasks/main.yml
Jose 447bdfb2e1 refactor ♻️: Rename task from 'Install, auto-tune, and make it persistent' to 'Install powrtop, auto-tune, and make it persistent'
Refactored the task name to include the specific tool being installed (powrtop) for clarity.
2026-02-12 17:55:44 +01:00

20 lines
560 B
YAML

---
# ansible_role_proxmox_provision/tasks/main.yml
# Main tasks for role
# ===================
- name: Disable enterprise repo, enable no-subscription
ansible.builtin.import_tasks: repos.yml
- name: Remove the infamous subscription nag
ansible.builtin.import_tasks: subscription.yml
- name: Disable swap or tune it
ansible.builtin.import_tasks: swap.yml
- name: Stop logs from quietly murdering /
ansible.builtin.import_tasks: logrotate.yml
- name: Install powrttop, auto-tune, and make it persistent
ansible.builtin.import_tasks: powertop.yml