Update stor4nfv install scripts according to opensds aruba release
[stor4nfv.git] / ci / ansible / roles / cleaner / scenarios / repository.yml
1 # Copyright (c) 2018 Huawei Technologies Co., Ltd. All Rights Reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 ---
16 - set_fact:
17     go_path: "{{ lookup('env', 'GOPATH') }}"
18
19 - name: check go_path
20   shell: "{{ item }}"
21   with_items:
22       - echo "The environment variable GOPATH must be set and cannot be an empty string!"
23       - /bin/false
24   when: go_path == ""
25
26 - name: clean opensds controller data
27   shell: make clean
28   args:
29     chdir: "{{ go_path }}/src/github.com/opensds/opensds"
30   when: install_from == "repository"
31
32 - name: clean opensds northbound plugin data
33   shell: make clean
34   args:
35     chdir: "{{ go_path }}/src/github.com/opensds/nbp"
36   when: install_from == "repository" and nbp_plugin_type != "hotpot_only"
37
38 - name: clean opensds dashboard data
39   shell: make clean
40   args:
41     chdir: "{{ go_path }}/src/github.com/opensds/opensds/dashboard"
42   when: dashboard_installation_type == "source_code"
43   become: yes
44   ignore_errors: yes