Files
startusingansible/training/apt-uninstall.yml
2026-05-07 16:51:47 +02:00

13 lines
252 B
YAML

- 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