Update stor4nfv install scripts according to opensds aruba release
[stor4nfv.git] / ci / ansible / roles / dashboard-installer / scenarios / source-code.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: check for opensds source code existed
27   stat:
28     path: "{{ go_path }}/src/github.com/opensds/opensds"
29   register: opensdsexisted
30   
31 - name: download opensds source code if not exists
32   git:
33     repo: "{{ opensds_remote_url }}"
34     dest: "{{ go_path }}/src/github.com/opensds/opensds"
35     version: "{{ opensds_repo_branch }}"
36   when:
37     - opensdsexisted.stat.exists is undefined or opensdsexisted.stat.exists == false
38
39 - name: build and configure opensds dashboard
40   shell: "{{ item }}"
41   with_items:
42     - service apache2 stop
43     - make
44     - service apache2 start
45   args:
46     chdir: "{{ go_path }}/src/github.com/opensds/opensds/dashboard"
47     warn: false
48   become: yes
49
50 - name: update nginx default config
51   become: yes
52   shell: bash ./script/set_nginx_config.sh
53
54 - name: restart nginx
55   service:
56     name: nginx
57     state: restarted
58