OAM operations - deployment
[appc/deployment.git] / installation / appc / src / main / scripts / installZips.sh
1 #!/bin/bash
2
3 ###
4 # ============LICENSE_START=======================================================
5 # APPC
6 # ================================================================================
7 # Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
8 # ================================================================================
9 # Licensed under the Apache License, Version 2.0 (the "License");
10 # you may not use this file except in compliance with the License.
11 # You may obtain a copy of the License at
12
13 #      http://www.apache.org/licenses/LICENSE-2.0
14
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
20 # ============LICENSE_END=========================================================
21 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 ###
23
24 if [ -z "$SETTINGS_FILE" -a -z "$GLOBAL_SETTINGS_FILE" -a -s "$HOME"/.m2/settings.xml ]
25 then
26   DEFAULT_MAVEN_SETTINGS=${HOME}/.m2/settings.xml
27   SETTINGS_FILE=${SETTINGS_FILE:-${DEFAULT_MAVEN_SETTINGS}}
28   GLOBAL_SETTINGS_FILE=${GLOBAL_SETTINGS_FILE:-${DEFAULT_MAVEN_SETTINGS}}
29 fi
30
31 APPC_HOME=${APPC_HOME:-/opt/openecomp/appc}
32 SDNC_HOME=${SDNC_HOME:-/opt/openecomp/sdnc}
33
34 targetDir=${1:-${APPC_HOME}}
35 sdnc_targetDir=${1:-${SDNC_HOME}}
36
37 featureDir=${targetDir}/features
38
39 APPC_FEATURES=" \
40  appc-asdc-listener \
41  appc-lifecycle-management \
42  appc-command-executor \
43  appc-provider \
44  appc-event-listener \
45  appc-dispatcher \
46  appc-chef-adapter \
47  appc-netconf-adapter \
48  appc-rest-adapter \
49  appc-dmaap-adapter \
50  appc-dg-util \
51  appc-metric \
52  appc-dg-shared \
53  appc-iaas-adapter \
54  appc-ansible-adapter \
55  appc-oam"
56
57 APPC_VERSION=${APPC_VERSION:-0.0.1}
58 APPC_OAM_VERSION=${APPC_OAM_VERSION:-0.1.1}
59
60 if [ ! -d ${targetDir} ]
61 then
62   mkdir -p ${targetDir}
63 fi
64
65 if [ ! -d ${featureDir} ]
66 then
67   mkdir -p ${featureDir}
68 fi
69
70 cwd=$(pwd)
71
72 mavenOpts=${2:-"-s ${SETTINGS_FILE} -gs ${GLOBAL_SETTINGS_FILE}"}
73 cd /tmp
74
75 echo "Installing APP-C version ${APPC_VERSION}"
76 for feature in ${APPC_FEATURES}
77 do
78  rm -f /tmp/${feature}-installer*.zip
79  mvn -U ${mavenOpts} org.apache.maven.plugins:maven-dependency-plugin:2.9:copy -Dartifact=org.openecomp.appc:${feature}-installer:${APPC_VERSION}:zip -DoutputDirectory=/tmp -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.ssl.insecure=true
80  unzip -d ${featureDir} /tmp/${feature}-installer*zip
81 done
82
83 echo "Installing platform-logic for APP-C"
84 rm -f /tmp/platform-logic-installer*.zip
85 mvn -U ${mavenOpts} org.apache.maven.plugins:maven-dependency-plugin:2.9:copy -Dartifact=org.openecomp.appc.deployment:platform-logic-installer:${APPC_OAM_VERSION}:zip -DoutputDirectory=/tmp -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.ssl.insecure=true
86 unzip -d ${targetDir} /tmp/platform-logic-installer*.zip
87
88 find ${targetDir} -name '*.sh' -exec chmod +x '{}' \;
89
90 cd $cwd
91