Added apt

This commit is contained in:
2026-05-07 16:51:47 +02:00
parent 837aa86a8d
commit 4103845e98

View File

@@ -0,0 +1,13 @@
- name: Desinstal·lar paquets amb apt
hosts: webserver
become: yes
tasks:
- name: Eliminar curl i vim
ansible.builtin.apt:
name:
- curl
- vim
state: absent
purge: yes
autoremove: yes