homelab/ansible/roles/common/tasks/main.yml
2024-10-06 03:16:28 +02:00

14 lines
260 B
YAML

---
- name: Install common dependencies
ansible.builtin.apt:
pkg:
- acl
- prometheus-node-exporter
- btop
- ca-certificates
- curl
- python3
- python3-pip
- lm-sensors
update_cache: true
become: true