blob: 02b4dbb75b9b50966d1e5ec1caa0b0a120c3b91c [file] [log] [blame]
Nicolas Edelccb933e2018-09-11 17:19:07 +02001#!/bin/bash
2
Patrick Bradyc7d00752017-06-01 10:45:37 -07003###
4# ============LICENSE_START=======================================================
Patrick Brady10bba352017-07-19 12:09:28 -07005# ONAP : APPC
Patrick Bradyc7d00752017-06-01 10:45:37 -07006# ================================================================================
Patrick Brady5b817642018-03-22 15:12:48 -07007# Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Patrick Bradyc7d00752017-06-01 10:45:37 -07008# ================================================================================
Patrick Brady10bba352017-07-19 12:09:28 -07009# Copyright (C) 2017 Amdocs
10# =============================================================================
Patrick Bradyc7d00752017-06-01 10:45:37 -070011# Licensed under the Apache License, Version 2.0 (the "License");
12# you may not use this file except in compliance with the License.
13# You may obtain a copy of the License at
14#
15# http://www.apache.org/licenses/LICENSE-2.0
16#
17# Unless required by applicable law or agreed to in writing, software
18# distributed under the License is distributed on an "AS IS" BASIS,
19# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20# See the License for the specific language governing permissions and
21# limitations under the License.
Patrick Brady10bba352017-07-19 12:09:28 -070022#
Patrick Brady10bba352017-07-19 12:09:28 -070023# ============LICENSE_END=========================================================
Patrick Bradyc7d00752017-06-01 10:45:37 -070024###
25
Patrick Bradyc7d00752017-06-01 10:45:37 -070026ODL_HOME=${ODL_HOME:-/opt/opendaylight/current}
27ODL_KARAF_CLIENT=${ODL_KARAF_CLIENT:-${ODL_HOME}/bin/client}
Patrick Brady5b817642018-03-22 15:12:48 -070028ODL_KARAF_CLIENT_OPTS=${ODL_KARAF_CLIENT_OPTS:-""}
Patrick Bradyc7d00752017-06-01 10:45:37 -070029INSTALLERDIR=$(dirname $0)
30
31REPOZIP=${INSTALLERDIR}/${features.boot}-${project.version}.zip
32
33if [ -f ${REPOZIP} ]
34then
35 unzip -n -d ${ODL_HOME} ${REPOZIP}
36else
37 echo "ERROR : repo zip ($REPOZIP) not found"
38 exit 1
39fi
40
beili.zhou5ac1e862017-08-11 21:48:22 -040041#${ODL_KARAF_CLIENT} ${ODL_KARAF_CLIENT_OPTS} feature:repo-add ${features.repositories}
Patrick Brady5b817642018-03-22 15:12:48 -070042#
beili.zhou5ac1e862017-08-11 21:48:22 -040043
44
45COUNT=0
46while [ $COUNT -lt 10 ]; do
47 ${ODL_KARAF_CLIENT} ${ODL_KARAF_CLIENT_OPTS} feature:repo-add ${features.repositories} 2> /tmp/installErr
48 cat /tmp/installErr
49 if grep -q 'Failed to get the session' /tmp/installErr; then
50 sleep 10
51 else
52 let COUNT=10
53 fi
54 let COUNT=COUNT+1
55done
56COUNT=0
57while [ $COUNT -lt 10 ]; do
Patrick Brady5b817642018-03-22 15:12:48 -070058 2> /tmp/installErr
beili.zhou5ac1e862017-08-11 21:48:22 -040059 cat /tmp/installErr
60 if grep -q 'Failed to get the session' /tmp/installErr; then
61 sleep 10
62 else
63 let COUNT=10
64 fi
65 let COUNT=COUNT+1
66done