From 837aa86a8d10ec311269c22c06885ac5343c7fbf Mon Sep 17 00:00:00 2001 From: Guillem Hernandez Sola Date: Thu, 7 May 2026 16:50:28 +0200 Subject: [PATCH] apt curl vim --- training/apt-install.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 training/apt-install.yml diff --git a/training/apt-install.yml b/training/apt-install.yml new file mode 100644 index 0000000..189b4b5 --- /dev/null +++ b/training/apt-install.yml @@ -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 \ No newline at end of file