ansible_deploy/tasks/main.yml
GnomeZworc c8d3e0acc5
init repos
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
2025-11-20 23:21:44 +01:00

9 lines
No EOL
189 B
YAML

---
- name: Install package {{ item.key }}
apt:
name: "{{ item.key }}"
install_recommends: no
update_cache: yes
cache_valid_time: 60
loop: "{{ packages | dict2items }}"