Add os/uninstall_packages.yml

This commit is contained in:
David Lopez 2023-08-22 10:27:30 +00:00
parent 7df3e28a59
commit e22897a7bc
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
---
- hosts: "{{ hosts_servers }}"
tasks:
- name: Package Uninstall
apt:
purge: yes
name: "{{ package_name }}"
state: absent