This commit is contained in:
cătălin 2024-02-10 19:44:11 +01:00
commit 1cc30ed503
Signed by untrusted user: catalin
GPG key ID: 0178DF42F43E5FD2
15 changed files with 202 additions and 1 deletions

View file

@ -0,0 +1,17 @@
- name: Install base packages
apt:
name: "{{ item }}"
state: present
update_cache: yes
loop:
- qemu-guest-agent
- git
- tmux
- vim
- curl
- nfs-common
- name: Update all packages
apt:
upgrade: dist
update_cache: yes