Files
ansible/roles/proxmox/tasks/01_setup_localhost.yaml
Tuan-Dat Tran ef652fac20 refactor: yml -> yaml
Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
2025-11-07 20:44:14 +01:00

8 lines
168 B
YAML

---
- name: Install dependencies
ansible.builtin.apt:
name: "{{ item }}"
update_cache: true
state: present
loop: "{{ proxmox_localhost_dependencies }}"