blob: 843eb4579573e07e296297717cad34fd1183f469 [file] [log] [blame]
Patrick Bradyc7d00752017-06-01 10:45:37 -07001###
2# ============LICENSE_START=======================================================
Patrick Brady10bba352017-07-19 12:09:28 -07003# ONAP : APPC
Patrick Bradyc7d00752017-06-01 10:45:37 -07004# ================================================================================
Patrick Brady5b817642018-03-22 15:12:48 -07005# Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Patrick Bradyc7d00752017-06-01 10:45:37 -07006# ================================================================================
Patrick Brady10bba352017-07-19 12:09:28 -07007# Copyright (C) 2017 Amdocs
8# =============================================================================
Patrick Bradyc7d00752017-06-01 10:45:37 -07009# 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.
Patrick Brady10bba352017-07-19 12:09:28 -070020#
Patrick Brady10bba352017-07-19 12:09:28 -070021# ============LICENSE_END=========================================================
Patrick Bradyc7d00752017-06-01 10:45:37 -070022###
23
24#!/bin/bash
25
26ODL_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