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

- 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