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.
13 lines
269 B
YAML
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 |