diff --git a/os/uninstall_packages.yml b/os/uninstall_packages.yml new file mode 100644 index 0000000..ad06b82 --- /dev/null +++ b/os/uninstall_packages.yml @@ -0,0 +1,8 @@ +--- +- hosts: "{{ hosts_servers }}" + tasks: + - name: Package Uninstall + apt: + purge: yes + name: "{{ package_name }}" + state: absent \ No newline at end of file