OAM operations - deployment
[appc/deployment.git] / installation / appc / src / main / scripts / installFeatures.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 ODL_HOME=${ODL_HOME:-/opt/opendaylight/current}
25 APPC_HOME=${APPC_HOME:-/opt/openecomp/appc}
26 APPC_FEATURE_DIR=${APPC_FEATURE_DIR:-${APPC_HOME}/features}
27
28 function featureInstall {
29 COUNT=0
30 while [ $COUNT -lt 10 ]; do
31   ${ODL_HOME}/bin/client -u karaf feature:install $1 2> /tmp/installErr
32   cat /tmp/installErr
33   if grep -q 'Failed to get the session' /tmp/installErr; then
34     sleep 10
35   else
36     let COUNT=10
37   fi
38   let COUNT=COUNT+1
39 done
40 }
41
42 APPC_FEATURES=" \
43  appc-metric \
44  appc-provider \
45  appc-command-executor \
46  appc-dmaap-adapter \
47  appc-event-listener \
48  appc-chef-adapter \
49  appc-netconf-adapter \
50  appc-rest-adapter \
51  appc-lifecycle-management \
52  appc-dispatcher \
53  appc-dg-util \
54  appc-dg-shared \
55  appc-asdc-listener \
56  appc-oam \
57  appc-iaas-adapter \
58  appc-ansible-adapter"
59
60 echo "Enabling core APP-C features"
61 featureInstall odl-netconf-connector-all
62 featureInstall odl-restconf-noauth
63 featureInstall odl-netconf-topology
64
65 # When the karaf netconf feature gets installed, need to replace default password with OpenECOMP APP-C ODL Password
66 sed -i 's/admin<\/password>/Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U<\/password>/' ${ODL_HOME}/etc/opendaylight/karaf/99-netconf-connector.xml
67
68 echo "Installing APP-C Features"
69 echo ""
70
71 for feature in ${APPC_FEATURES}
72 do
73   if [ -f ${APPC_FEATURE_DIR}/${feature}/install-feature.sh ]
74   then
75     ${APPC_FEATURE_DIR}/${feature}/install-feature.sh
76   else
77     echo "No installer found for feature ${feature}"
78   fi
79 done