47506ba7682d2919a8ea59f8d6ba93512990beee
[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-dmaap-adapter \
46  appc-event-listener \
47  appc-chef-adapter \
48  appc-netconf-adapter \
49  appc-rest-adapter \
50  appc-dispatcher \
51  appc-dg-util \
52  appc-dg-shared \
53  appc-asdc-listener \
54  appc-iaas-adapter \
55  appc-ansible-adapter"
56
57 echo "Enabling core APP-C features"
58 featureInstall odl-netconf-connector-all
59 featureInstall odl-restconf-noauth
60 featureInstall odl-netconf-topology
61
62 # When the karaf netconf feature gets installed, need to replace default password with OpenECOMP APP-C ODL Password
63 sed -i 's/admin<\/password>/Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U<\/password>/' ${ODL_HOME}/etc/opendaylight/karaf/99-netconf-connector.xml
64
65 echo "Installing APP-C Features"
66 echo ""
67
68 for feature in ${APPC_FEATURES}
69 do
70   if [ -f ${APPC_FEATURE_DIR}/${feature}/install-feature.sh ]
71   then
72     ${APPC_FEATURE_DIR}/${feature}/install-feature.sh
73   else
74     echo "No installer found for feature ${feature}"
75   fi
76 done