Files
ansible_role_proxmox_provision/tasks/utilities.yml
Jose 7e738cfbec
Some checks failed
ansible-lint / Ansible Lint (push) Failing after 6s
Gitleaks Scan / gitleaks (push) Successful in 5s
Markdown Lint / markdown-lint (push) Successful in 5s
feat : Add tasks for importing utilities.yml and installing system packages
This commit introduces two new tasks in the Ansible playbook. The first task imports a `utilities.yml` file, which likely contains reusable utility functions or configurations for API interactions. The second task installs necessary system packages required for the application to run smoothly.
2026-02-12 18:08:57 +01:00

13 lines
269 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