Created prepare playbook
This commit is contained in:
17
ansible/tasks/remove-snap.yaml
Normal file
17
ansible/tasks/remove-snap.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
- name: Remove snapd from Ubuntu
|
||||
apt:
|
||||
name: snapd
|
||||
state: absent
|
||||
purge: yes
|
||||
when: ansible_distribution == "Ubuntu"
|
||||
|
||||
- name: Remove snapd-related directories
|
||||
file:
|
||||
path: "{{ item }}"
|
||||
state: absent
|
||||
with_items:
|
||||
- /snap
|
||||
- /var/snap
|
||||
- /var/lib/snapd
|
||||
- "/home/{{ ansible_user }}/snap"
|
||||
when: ansible_distribution == "Ubuntu"
|
||||
Reference in New Issue
Block a user