summaryrefslogtreecommitdiffstats
path: root/ci/nbp-ansible/roles/cleaner/tasks/main.yml
blob: 38678b026cf16670239421aaf576673c257cba82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
- name: clean opensds flexvolume plugins binary file
  file:
    path: "{{ flexvolume_plugin_dir }}"
    state: absent
    force: yes
  ignore_errors: yes

- name: clean nbp release files
  file:
    path: "{{ nbp_dir }}"
    state: absent
    force: yes
  ignore_errors: yes

- name: clean nbp release tarball file
  file:
    path: "{{ nbp_tarball_url }}"
    state: absent
    force: yes
  ignore_errors: yes