From f602f93440893507068a2e4e76816bdcdb6a39ad Mon Sep 17 00:00:00 2001 From: Skip Wonnell Date: Tue, 19 Dec 2017 17:33:02 -0600 Subject: Platform hardening for appc-metric Issue-ID: APPC-305 Change-Id: I4183e2a723fa50ff1398f584a77c1234d28e8340 Signed-off-by: Skip Wonnell --- .../org/onap/appc/metricservice/MetricService.java | 2 +- .../src/main/resources/scripts/install-feature.sh | 38 +++++++++++----------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/appc-metric/appc-metric-bundle/src/main/java/org/onap/appc/metricservice/MetricService.java b/appc-metric/appc-metric-bundle/src/main/java/org/onap/appc/metricservice/MetricService.java index 65ff72d97..bf423eeb9 100644 --- a/appc-metric/appc-metric-bundle/src/main/java/org/onap/appc/metricservice/MetricService.java +++ b/appc-metric/appc-metric-bundle/src/main/java/org/onap/appc/metricservice/MetricService.java @@ -34,7 +34,7 @@ public interface MetricService { /** * This API will be used to get the Map of all the registered Registry for the Metric Service - * @return Map where String will be the name of the Metric Registry + * @return Map where String will be the name of the Metric Registry * and MetricRegistry will be the actual object for that Registry */ Map getAllRegistry(); diff --git a/appc-metric/appc-metric-installer/src/main/resources/scripts/install-feature.sh b/appc-metric/appc-metric-installer/src/main/resources/scripts/install-feature.sh index 13d41ca56..d3596c688 100644 --- a/appc-metric/appc-metric-installer/src/main/resources/scripts/install-feature.sh +++ b/appc-metric/appc-metric-installer/src/main/resources/scripts/install-feature.sh @@ -33,31 +33,31 @@ REPOZIP=${INSTALLERDIR}/${features.boot}-${project.version}.zip if [ -f ${REPOZIP} ] then - unzip -n -d ${ODL_HOME} ${REPOZIP} + unzip -n -d ${ODL_HOME} ${REPOZIP} else - echo "ERROR : repo zip ($REPOZIP) not found" - exit 1 + echo "ERROR : repo zip ($REPOZIP) not found" + exit 1 fi COUNT=0 while [ $COUNT -lt 10 ]; do - ${ODL_KARAF_CLIENT} ${ODL_KARAF_CLIENT_OPTS} feature:repo-add ${features.repositories} 2> /tmp/installErr - cat /tmp/installErr - if grep -q 'Failed to get the session' /tmp/installErr; then - sleep 10 - else - let COUNT=10 - fi - let COUNT=COUNT+1 + ${ODL_KARAF_CLIENT} ${ODL_KARAF_CLIENT_OPTS} feature:repo-add ${features.repositories} 2> /tmp/installErr + cat /tmp/installErr + if grep -q 'Failed to get the session' /tmp/installErr; then + sleep 10 + else + let COUNT=10 + fi + let COUNT=COUNT+1 done COUNT=0 while [ $COUNT -lt 10 ]; do - ${ODL_KARAF_CLIENT} ${ODL_KARAF_CLIENT_OPTS} feature:install ${features.boot} 2> /tmp/installErr - cat /tmp/installErr - if grep -q 'Failed to get the session' /tmp/installErr; then - sleep 10 - else - let COUNT=10 - fi - let COUNT=COUNT+1 + ${ODL_KARAF_CLIENT} ${ODL_KARAF_CLIENT_OPTS} feature:install ${features.boot} 2> /tmp/installErr + cat /tmp/installErr + if grep -q 'Failed to get the session' /tmp/installErr; then + sleep 10 + else + let COUNT=10 + fi + let COUNT=COUNT+1 done -- cgit 1.2.3-korg