Files
ansible_role_proxmox_provision/tasks/utilities.yml
Jose e2f992a2fa
Some checks failed
ansible-lint / Ansible Lint (push) Failing after 11s
Gitleaks Scan / gitleaks (push) Successful in 5s
Markdown Lint / markdown-lint (push) Successful in 5s
chore 📦: Update build scripts for CI/CD pipeline
Updated the build scripts to ensure compatibility with the latest version of the CI/CD tooling and improved the overall efficiency of the pipeline.
2026-02-12 18:10:04 +01:00

14 lines
270 B
YAML

---
- name: utilities | Install required system packages
apt:
name:
- python3
- python3-pip
- python3-setuptools
- python3-proxmoxer
- python3-requests
- smartmontools
- lm-sensors
state: present
update_cache: yes