homelab/ansible/roles/common/tasks/main.yml

23 lines
384 B
YAML
Raw Normal View History

2024-09-28 22:20:47 +00:00
---
- name: Install common dependencies
ansible.builtin.apt:
pkg:
- acl
2024-09-28 23:39:25 +00:00
- prometheus-node-exporter
- btop
- ca-certificates
- curl
- python3
- python3-pip
2024-10-06 01:16:28 +00:00
- lm-sensors
2024-09-28 22:20:47 +00:00
update_cache: true
become: true
- name: Install VM dependencies
ansible.builtin.apt:
pkg:
- qemu-guest-agent
state: absent
become: true