Use onap cli for registering services to msb
[demo.git] / boot / cli_install.sh
1 #!/bin/bash
2
3 #*******************************************************************************
4 # Copyright 2017 Huawei Technologies Co., Ltd.
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #*******************************************************************************
18
19 CLI_LATEST_BINARY="https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.cli&a=cli-zip&e=zip&v=LATEST"
20 CLI_INSTALL_DIR=/opt/onap/cli
21 CLI_ZIP=cli.zip
22 CLI_BIN=/usr/bin/onap
23 export ONAP_CLI_HOME=$CLI_INSTALL_DIR
24
25 #create install dir
26 if [ -d $CLI_INSTALL_DIR ]
27 then
28     mv $CLI_INSTALL_DIR $CLI_INSTALL_DIR/../cli_`date +"%m-%d-%y-%H-%M-%S"`
29     rm $CLI_BIN
30 fi
31
32 mkdir -p $CLI_INSTALL_DIR
33 cd $CLI_INSTALL_DIR
34
35 #Download and unzip CLI
36 apt-get install -y wget unzip
37
38 #check for java
39 java -version
40 if [ $? == 127 ]
41 then
42     apt-get install -y openjdk-8-jre
43 fi
44
45 wget -O $CLI_ZIP $CLI_LATEST_BINARY
46
47 unzip $CLI_ZIP
48 if [ ! -d ./data ]; then mkdir ./data; fi
49 if [ ! -d ./onap-cli-schema ]; then mkdir ./onap-cli-schema; fi
50 chmod +x ./bin/onap.sh
51
52 #Make onap available in path
53 ln ./bin/onap.sh $CLI_BIN
54
55 #Print the version
56 onap -v
57
58 cd -