sync/roles/clean/tasks/main.yml

13 lines
252 B
YAML
Raw Normal View History

2018-07-05 17:07:42 -04:00
- name: Remove files
file:
path: "{{ local_path }}/{{ item.path }}"
state: absent
with_filetree: "skel/"
- name: Remove cloned repositories
file:
2018-07-05 17:15:28 -04:00
path: "{{ local_path }}/{{ item }}"
2018-07-05 17:07:42 -04:00
state: absent
loop:
2018-07-05 17:15:28 -04:00
- ".fzf"
- ".vim"