apt curl vim

This commit is contained in:
2026-05-07 16:50:28 +02:00
parent 473f98bfd7
commit 837aa86a8d

15
training/apt-install.yml Normal file
View File

@@ -0,0 +1,15 @@
- name: Instal·lar paquets amb apt
hosts: webserver
become: yes
tasks:
- name: Instal·lar curl
ansible.builtin.apt:
name: curl
state: present
update_cache: yes
- name: Instal·lar vim
ansible.builtin.apt:
name: vim
state: present