From 395b49a08401890e7fa3af1fc869e4049a4bda36 Mon Sep 17 00:00:00 2001 From: Taka Cho Date: Wed, 2 Dec 2020 15:27:04 -0500 Subject: move all bash to ash shell scripts - apex bash scripts convert to ash Issue-ID: POLICY-2847 Change-Id: I4617223d4914820797f5ea121f75ee5f69a6ba40 Signed-off-by: Taka Cho --- .../src/main/package/scripts/apexApps.sh | 226 ++++++++++++++------- .../src/main/package/scripts/apexAsh.sh | 32 +++ .../src/main/package/scripts/apexBash.sh | 32 --- .../src/main/package/scripts/apexCLIEditor.sh | 9 +- .../src/main/package/scripts/apexCLIToscaEditor.sh | 9 +- .../src/main/package/scripts/apexEngine.sh | 21 +- .../src/main/package/scripts/apexOnapPf.sh | 27 +-- .../src/main/package/scripts/runBenchmark.sh | 9 +- .../src/main/package/scripts/runOneBenchmark.sh | 22 +- 9 files changed, 229 insertions(+), 158 deletions(-) create mode 100755 packages/apex-pdp-package-full/src/main/package/scripts/apexAsh.sh delete mode 100755 packages/apex-pdp-package-full/src/main/package/scripts/apexBash.sh (limited to 'packages/apex-pdp-package-full') diff --git a/packages/apex-pdp-package-full/src/main/package/scripts/apexApps.sh b/packages/apex-pdp-package-full/src/main/package/scripts/apexApps.sh index 255500a9f..ad7cc7cb4 100755 --- a/packages/apex-pdp-package-full/src/main/package/scripts/apexApps.sh +++ b/packages/apex-pdp-package-full/src/main/package/scripts/apexApps.sh @@ -1,4 +1,4 @@ -#!/bin/bash -x +#!/usr/bin/env ash #------------------------------------------------------------------------------- # ============LICENSE_START======================================================= @@ -30,18 +30,19 @@ ## @package org.onap.policy.apex ## @author Sven van der Meer ## @version v2.0.0 - +## +## convert to ash shell script 12/1/2020 +## +##set -x ## ## DO NOT CHANGE CODE BELOW, unless you know what you are doing ## -if [ -z $APEX_HOME ] -then +if [ -z "$APEX_HOME" ]; then APEX_HOME="/opt/app/policy/apex-pdp" fi -if [ ! -d $APEX_HOME ] -then +if [ ! -d "$APEX_HOME" ]; then echo echo 'Apex directory "'$APEX_HOME'" not set or not a directory' echo "Please set environment for 'APEX_HOME'" @@ -58,15 +59,8 @@ TRUSTSTORE_PASSWORD="${TRUSTSTORE_PASSWORD:-Pol1cy_0nap}" HTTPS_PARAMETERS="-Djavax.net.ssl.keyStore=${KEYSTORE} -Djavax.net.ssl.keyStorePassword=${KEYSTORE_PASSWORD} -Djavax.net.ssl.trustStore=$TRUSTSTORE -Djavax.net.ssl.trustStorePassword=${TRUSTSTORE_PASSWORD}" ## script name for output -MOD_SCRIPT_NAME=`basename $0` +MOD_SCRIPT_NAME=$(basename $0) -## check BASH version, we need >=4 for associative arrays -if [ "${BASH_VERSION:0:1}" -lt 4 ] ; then - echo - echo "$MOD_SCRIPT_NAME: requires bash 4 or higher for associative arrays" - echo - exit -fi ## config for CP apps _config="${HTTPS_PARAMETERS} -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -Dhazelcast.config=$APEX_HOME/etc/hazelcast.xml -Dhazelcast.mancenter.enabled=false" @@ -75,49 +69,25 @@ _config="${HTTPS_PARAMETERS} -Dlogback.configurationFile=$APEX_HOME/etc/logback. _jmxconfig="-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9911 -Dcom.sun.management.jmxremote.local.only=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false " ## Maven/APEX version -_version=`cat $APEX_HOME/etc/app-version.txt` +_version=$(cat $APEX_HOME/etc/app-version.txt) -## system to get CygWin paths -system=`uname -s | cut -c1-6` +## system to get CygWin paths +## NOTE: CygWin can not be tested with ash, due to lack of env setup +system=$(uname -s | cut -c1-6) cpsep=":" -if [ "$system" == "CYGWIN" ] ; then +if [ "$system" = "CYGWIN" ] ; then APEX_HOME=`cygpath -m ${APEX_HOME}` - cpsep=";" + cpsep=";" fi - ## CP for CP apps CLASSPATH="$APEX_HOME/etc${cpsep}$APEX_HOME/etc/hazelcast${cpsep}$APEX_HOME/etc/infinispan${cpsep}$APEX_HOME/lib/*" -## array of applications with name=command -declare -A APEX_APP_MAP -APEX_APP_MAP["ws-console"]="java -jar $APEX_HOME/lib/applications/simple-wsclient-$_version-jar-with-dependencies.jar -c" -APEX_APP_MAP["ws-echo"]="java -jar $APEX_HOME/lib/applications/simple-wsclient-$_version-jar-with-dependencies.jar" -APEX_APP_MAP["tpl-event-json"]="java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.tools.model.generator.model2event.Model2EventMain" -APEX_APP_MAP["model-2-cli"]="java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.tools.model.generator.model2cli.Model2ClMain" -APEX_APP_MAP["cli-editor"]="java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.auth.clieditor.ApexCommandLineEditorMain" -APEX_APP_MAP["cli-tosca-editor"]="java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.auth.clieditor.tosca.ApexCliToscaEditorMain" -APEX_APP_MAP["engine"]="java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.service.engine.main.ApexMain" -APEX_APP_MAP["event-gen"]="java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.testsuites.performance.benchmark.eventgenerator.EventGenerator" -APEX_APP_MAP["onappf"]="java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.services.onappf.ApexStarterMain" -APEX_APP_MAP["jmx-test"]="java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config $_jmxconfig org.onap.policy.apex.service.engine.main.ApexMain" - -## array of applications with name=description -declare -A APEX_APP_DESCR_MAP -APEX_APP_DESCR_MAP["ws-console"]="a simple console sending events to APEX, connect to APEX consumer port" -APEX_APP_DESCR_MAP["ws-echo"]="a simple echo client printing events received from APEX, connect to APEX producer port" -APEX_APP_DESCR_MAP["tpl-event-json"]="provides JSON templates for events generated from a policy model" -APEX_APP_DESCR_MAP["model-2-cli"]="generates CLI Editor Commands from a policy model" -APEX_APP_DESCR_MAP["cli-editor"]="runs the APEX CLI Editor" -APEX_APP_DESCR_MAP["cli-tosca-editor"]="runs the APEX CLI Tosca Editor" -APEX_APP_DESCR_MAP["engine"]="starts the APEX engine" -APEX_APP_DESCR_MAP["event-generator"]="starts the event generator in a simple webserver for performance testing" -APEX_APP_DESCR_MAP["onappf"]="starts the ApexStarter which handles the Apex Engine based on instructions from PAP" -APEX_APP_DESCR_MAP["jmx-test"]="starts the APEX engine with creating jmx connection configuration" +cmd_list="ws-console ws-echo tpl-event-json model-2-cli cli-editor cli-tosca-editor engine event-generator onappf jmx-test" ## ## Help screen and exit condition (i.e. too few arguments) ## -Help() +function Help() { echo "" echo "$MOD_SCRIPT_NAME - runs APEX applications" @@ -130,8 +100,130 @@ Help() echo " -h - this help screen" echo "" echo "" - exit 255; + exit 255 +} + + +## +## set java command for each option +## +function set_java_cmd() +{ + case "$1" in + ws-console) + { + echo "java -jar $APEX_HOME/lib/applications/simple-wsclient-$_version-jar-with-dependencies.jar -c" + };; + ws-echo) + { + echo "java -jar $APEX_HOME/lib/applications/simple-wsclient-$_version-jar-with-dependencies.jar" + };; + tpl-event-json) + { + echo "java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.tools.model.generator.model2event.Model2EventMain" + };; + model-2-cli) + { + echo "java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.tools.model.generator.model2cli.Model2ClMain" + };; + cli-editor) + { + echo "java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.auth.clieditor.ApexCommandLineEditorMain" + };; + cli-tosca-editor) + { + echo "java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.auth.clieditor.tosca.ApexCliToscaEditorMain" + };; + engine) + { + echo "java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.service.engine.main.ApexMain" + };; + event-generator) + { + echo "java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.testsuites.performance.benchmark.eventgenerator.EventGenerator" + };; + onappf) + { + echo "java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config org.onap.policy.apex.services.onappf.ApexStarterMain" + };; + jmx-test) + { + echo "java -Dlogback.configurationFile=$APEX_HOME/etc/logback.xml -cp ${CLASSPATH} $_config $_jmxconfig org.onap.policy.apex.service.engine.main.ApexMain" + };; + *) + { + echo "" + };; + esac } + + +## +## print the description for each option +## +function print_description() +{ + case "$1" in + ws-console) + { + echo "a simple console sending events to APEX, connect to APEX consumer port" + echo "" + };; + ws-echo) + { + echo "a simple echo client printing events received from APEX, connect to APEX producer port" + echo "" + };; + tpl-event-json) + { + echo "provides JSON templates for events generated from a policy model" + echo "" + };; + model-2-cli) + { + echo "generates CLI Editor Commands from a policy model" + echo "" + };; + cli-editor) + { + echo "runs the APEX CLI Editor" + echo "" + };; + cli-tosca-editor) + { + echo "runs the APEX CLI Tosca Editor" + echo "" + };; + engine) + { + echo "starts the APEX engine" + echo "" + };; + event-generator) + { + echo "starts the event generator in a simple webserver for performance testing" + echo "" + };; + onappf) + { + echo "starts the ApexStarter which handles the Apex Engine based on instructions from PAP" + echo "" + };; + jmx-test) + { + echo "starts the APEX engine with creating jmx connection configuration" + echo "" + };; + *) + { + echo "$MOD_SCRIPT_NAME: unknown application '$1'" + echo "$MOD_SCRIPT_NAME: supported applications:" + echo " --> ${cmd_list}" + echo "" + };; + esac +} + if [ $# -eq 0 ]; then Help fi @@ -140,45 +232,41 @@ fi ## ## read command line, cannot do as while here due to 2-view CLI ## -if [ "$1" == "-l" ]; then +if [ "$1" = "-l" ]; then echo "$MOD_SCRIPT_NAME: supported applications:" - echo " --> ${!APEX_APP_MAP[@]}" + echo " --> ${cmd_list}" echo "" exit 0 fi -if [ "$1" == "-d" ]; then +if [ "$1" = "-d" ]; then if [ -z "$2" ]; then echo "$MOD_SCRIPT_NAME: no application given to describe, supported applications:" - echo " --> ${!APEX_APP_MAP[@]}" + echo " --> ${cmd_list}" echo "" - exit 0; else - _cmd=${APEX_APP_DESCR_MAP[$2]} - if [ -z "$_cmd" ]; then - echo "$MOD_SCRIPT_NAME: unknown application '$2'" - echo "" - exit 0; - fi - echo "$MOD_SCRIPT_NAME: application '$2'" - echo " --> $_cmd" - echo "" - exit 0; + print_description $2 fi + exit 0; fi -if [ "$1" == "-h" ]; then +if [ "$1" = "-h" ]; then Help exit 0 fi - +# +# begin to run java +# _app=$1 shift -_cmd=${APEX_APP_MAP[$_app]} -if [ -z "$_cmd" ]; then - echo "$MOD_SCRIPT_NAME: application '$_app' not supported" - exit 1 +_cmd=$(set_java_cmd $_app) +if [ -z "${_cmd}" ]; then + echo "$MOD_SCRIPT_NAME: unknown application '$_app'" + echo "$MOD_SCRIPT_NAME: supported applications:" + echo " --> ${cmd_list}" + echo "" + exit 0 fi _cmd="$_cmd $*" -## echo "$MOD_SCRIPT_NAME: running application '$_app' with command '$_cmd'" +echo "$MOD_SCRIPT_NAME: running application '$_app' with command '$_cmd'" exec $_cmd diff --git a/packages/apex-pdp-package-full/src/main/package/scripts/apexAsh.sh b/packages/apex-pdp-package-full/src/main/package/scripts/apexAsh.sh new file mode 100755 index 000000000..ef14d903c --- /dev/null +++ b/packages/apex-pdp-package-full/src/main/package/scripts/apexAsh.sh @@ -0,0 +1,32 @@ +#!/usr/bin/env ash + +#------------------------------------------------------------------------------- +# ============LICENSE_START======================================================= +# Copyright (C) 2016-2018 Ericsson. All rights reserved. +# Modifications Copyright (C) 2020 AT&T Intellectual Property. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# ============LICENSE_END========================================================= +#------------------------------------------------------------------------------- + +# Run from the Apex home directory +if [ ! -d /home/apexuser ]; then + echo Apex user home directory "/home/apexuser" not found + exit +fi + +# Run the command as "apexuser" +cd /home/apexuser +su apexuser diff --git a/packages/apex-pdp-package-full/src/main/package/scripts/apexBash.sh b/packages/apex-pdp-package-full/src/main/package/scripts/apexBash.sh deleted file mode 100755 index 2a201cc72..000000000 --- a/packages/apex-pdp-package-full/src/main/package/scripts/apexBash.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -#------------------------------------------------------------------------------- -# ============LICENSE_START======================================================= -# Copyright (C) 2016-2018 Ericsson. All rights reserved. -# ================================================================================ -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# SPDX-License-Identifier: Apache-2.0 -# ============LICENSE_END========================================================= -#------------------------------------------------------------------------------- - -# Run from the Apex home directory -if [ ! -d /home/apexuser ] -then - echo Apex user home directory "/home/apexuser" not found - exit -fi - -# Run the command as "apexuser" -cd /home/apexuser -su apexuser diff --git a/packages/apex-pdp-package-full/src/main/package/scripts/apexCLIEditor.sh b/packages/apex-pdp-package-full/src/main/package/scripts/apexCLIEditor.sh index 42c70fdb3..fb520e7fc 100755 --- a/packages/apex-pdp-package-full/src/main/package/scripts/apexCLIEditor.sh +++ b/packages/apex-pdp-package-full/src/main/package/scripts/apexCLIEditor.sh @@ -1,8 +1,9 @@ -#!/usr/bin/env bash +#!/usr/bin/env ash #------------------------------------------------------------------------------- # ============LICENSE_START======================================================= # Copyright (C) 2016-2018 Ericsson. All rights reserved. +# Modifications Copyright (C) 2020 AT&T Intellectual Property. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -31,13 +32,11 @@ ## DO NOT CHANGE CODE BELOW, unless you know what you are doing ## -if [ -z $APEX_HOME ] -then +if [ -z "${APEX_HOME}" ]; then APEX_HOME="/opt/app/policy/apex-pdp" fi -if [ ! -d $APEX_HOME ] -then +if [ ! -d "${APEX_HOME}" ]; then echo echo 'Apex directory "'$APEX_HOME'" not set or not a directory' echo "Please set environment for 'APEX_HOME'" diff --git a/packages/apex-pdp-package-full/src/main/package/scripts/apexCLIToscaEditor.sh b/packages/apex-pdp-package-full/src/main/package/scripts/apexCLIToscaEditor.sh index 3ed51ecff..cdf4eb3a7 100644 --- a/packages/apex-pdp-package-full/src/main/package/scripts/apexCLIToscaEditor.sh +++ b/packages/apex-pdp-package-full/src/main/package/scripts/apexCLIToscaEditor.sh @@ -1,8 +1,9 @@ -#!/usr/bin/env bash +#!/usr/bin/env ash #------------------------------------------------------------------------------- # ============LICENSE_START======================================================= # Copyright (C) 2019 Nordix Foundation. +# Modifications Copyright (C) 2020 AT&T Intellectual Property. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -27,13 +28,11 @@ ## @author Ajith Sreekumar ## @version v1.0.0 -if [ -z $APEX_HOME ] -then +if [ -z "${APEX_HOME}" ]; then APEX_HOME="/opt/app/policy/apex-pdp" fi -if [ ! -d $APEX_HOME ] -then +if [ ! -d "${APEX_HOME}" ]; then echo echo 'Apex directory "'$APEX_HOME'" not set or not a directory' echo "Please set environment for 'APEX_HOME'" diff --git a/packages/apex-pdp-package-full/src/main/package/scripts/apexEngine.sh b/packages/apex-pdp-package-full/src/main/package/scripts/apexEngine.sh index 6a1386e0e..ca68a9871 100755 --- a/packages/apex-pdp-package-full/src/main/package/scripts/apexEngine.sh +++ b/packages/apex-pdp-package-full/src/main/package/scripts/apexEngine.sh @@ -1,8 +1,9 @@ -#!/usr/bin/env bash +#!/usr/bin/env ash #------------------------------------------------------------------------------- # ============LICENSE_START======================================================= # Copyright (C) 2016-2018 Ericsson. All rights reserved. +# Modifications Copyright (C) 2020 AT&T Intellectual Property. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -31,39 +32,33 @@ ## DO NOT CHANGE CODE BELOW, unless you know what you are doing ## -if [ -z $APEX_USER ] -then +if [ -z "${APEX_USER}" ]; then APEX_USER="apexuser" fi id $APEX_USER > /dev/null 2>& 1 -if [ "$?" -ne "0" ] -then +if [ "$?" != "0" ]; then echo 'cannot run apex, user "'$APEX_USER'" does not exit' exit fi -if [ $(whoami) != "$APEX_USER" ] -then +if [ $(whoami) != "$APEX_USER" ]; then echo 'Apex must be run as user "'$APEX_USER'"' exit fi -if [ -z $APEX_HOME ] -then +if [ -z "${APEX_HOME}" ]; then APEX_HOME="/opt/app/policy/apex-pdp" fi -if [ ! -d $APEX_HOME ] -then +if [ ! -d "${APEX_HOME}" ]; then echo echo 'Apex directory "'$APEX_HOME'" not set or not a directory' echo "Please set environment for 'APEX_HOME'" exit fi -if [ $(whoami) == "$APEX_USER" ] -then +if [ $(whoami) = "$APEX_USER" ]; then $APEX_HOME/bin/apexApps.sh engine $* else su $APEX_USER -c "$APEX_HOME/bin/apexApps.sh engine $*" diff --git a/packages/apex-pdp-package-full/src/main/package/scripts/apexOnapPf.sh b/packages/apex-pdp-package-full/src/main/package/scripts/apexOnapPf.sh index 56ab61b88..2c95cd331 100644 --- a/packages/apex-pdp-package-full/src/main/package/scripts/apexOnapPf.sh +++ b/packages/apex-pdp-package-full/src/main/package/scripts/apexOnapPf.sh @@ -1,7 +1,8 @@ -#!/bin/bash -x +#!/usr/bin/env ash # # ============LICENSE_START======================================================= # Copyright (C) 2019-2020 Nordix Foundation. +# Modifications Copyright (C) 2020 AT&T Intellectual Property # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -28,54 +29,48 @@ ## @version v1.0.0 -if [ -z $APEX_USER ] -then +if [ -z "$APEX_USER" ]; then APEX_USER="apexuser" fi id $APEX_USER > /dev/null 2>& 1 -if [ "$?" -ne "0" ] -then +if [ "$?" != "0" ]; then echo 'cannot run apex, user "'$APEX_USER'" does not exit' exit fi -if [ $(whoami) != "$APEX_USER" ] -then +if [ $(whoami) != "$APEX_USER" ]; then echo 'Apex must be run as user "'$APEX_USER'"' exit fi -if [ -z $APEX_HOME ] -then +if [ -z $APEX_HOME ]; then APEX_HOME="/opt/app/policy/apex-pdp" fi -if [ ! -d $APEX_HOME ] -then +if [ ! -d $APEX_HOME ]; then echo echo 'Apex directory "'$APEX_HOME'" not set or not a directory' echo "Please set environment for 'APEX_HOME'" exit fi -if [[ -f "${HOME}"/config/policy-truststore ]]; then +if [ -f "${HOME}/config/policy-truststore" ]; then echo "overriding policy-truststore" cp -f "${HOME}"/config/policy-truststore "${APEX_HOME}"/etc/ssl/ fi -if [[ -f "${HOME}"/config/policy-keystore ]]; then +if [ -f "${HOME}"/config/policy-keystore ]; then echo "overriding policy-keystore" cp -f "${HOME}"/config/policy-keystore "${APEX_HOME}"/etc/ssl/ fi -if [[ -f "${HOME}"/config/logback.xml ]]; then +if [ -f "${HOME}"/config/logback.xml ]; then echo "overriding logback.xml" cp -f "${HOME}"/config/logback.xml "${APEX_HOME}"/etc/ fi -if [ $(whoami) == "$APEX_USER" ] -then +if [ $(whoami) = "$APEX_USER" ]; then $APEX_HOME/bin/apexApps.sh onappf $* else su $APEX_USER -c "$APEX_HOME/bin/apexApps.sh onappf $*" diff --git a/packages/apex-pdp-package-full/src/main/package/scripts/runBenchmark.sh b/packages/apex-pdp-package-full/src/main/package/scripts/runBenchmark.sh index 08c8d181f..d9ccaf81b 100644 --- a/packages/apex-pdp-package-full/src/main/package/scripts/runBenchmark.sh +++ b/packages/apex-pdp-package-full/src/main/package/scripts/runBenchmark.sh @@ -1,8 +1,9 @@ -#!/usr/bin/env bash +#!/usr/bin/env ash #------------------------------------------------------------------------------- # ============LICENSE_START======================================================= # Copyright (C) 2018 Ericsson. All rights reserved. +# Modifications Copyright (C) 2020 AT&T Intellectual Property. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -20,13 +21,11 @@ # ============LICENSE_END========================================================= #------------------------------------------------------------------------------- -if [ -z $APEX_HOME ] -then +if [ -z "${APEX_HOME}" ]; then APEX_HOME="/opt/app/policy/apex-pdp" fi -if [ ! -d $APEX_HOME ] -then +if [ ! -d "${APEX_HOME}" ]; then echo echo 'Apex directory "'$APEX_HOME'" not set or not a directory' echo "Please set environment for 'APEX_HOME'" diff --git a/packages/apex-pdp-package-full/src/main/package/scripts/runOneBenchmark.sh b/packages/apex-pdp-package-full/src/main/package/scripts/runOneBenchmark.sh index 2e81bd29d..1afb5347b 100755 --- a/packages/apex-pdp-package-full/src/main/package/scripts/runOneBenchmark.sh +++ b/packages/apex-pdp-package-full/src/main/package/scripts/runOneBenchmark.sh @@ -1,8 +1,9 @@ -#!/usr/bin/env bash +#!/usr/bin/env ash #------------------------------------------------------------------------------- # ============LICENSE_START======================================================= # Copyright (C) 2018 Ericsson. All rights reserved. +# Modifications Copyright (C) 2020 AT&T Intellectual Property. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -20,35 +21,30 @@ # ============LICENSE_END========================================================= #------------------------------------------------------------------------------- -if [ -z $APEX_HOME ] -then +if [ -z "${APEX_HOME}" ]; then APEX_HOME="/opt/app/policy/apex-pdp" fi -if [ ! -d $APEX_HOME ] -then +if [ ! -d "${APEX_HOME}" ]; then echo echo 'Apex directory "'$APEX_HOME'" not set or not a directory' echo "Please set environment for 'APEX_HOME'" exit fi -if [ $# -ne 2 ] -then +if [ $# -ne 2 ]; then echo "usage: $0 executor-type thread-count" echo " executor-type [Javascript|Jython|JRuby|Mvel|Java]" echo " thread-count [01|02|04|08|16|32|64]" exit 1 fi -if [ "$1" != "Javascript" ] && [ "$1" != "Jython" ] && [ "$1" != "JRuby" ] && [ "$1" != "Mvel" ] && [ "$1" != "Java" ] -then +if [ "$1" != "Javascript" ] && [ "$1" != "Jython" ] && [ "$1" != "JRuby" ] && [ "$1" != "Mvel" ] && [ "$1" != "Java" ]; then echo "executor-type must be a member of the set [Javascript|Jython|JRuby|Mvel|Java]" exit 1 fi -if [ "$2" != "01" ] && [ "$2" != "02" ] && [ "$2" != "04" ] && [ "$2" != "08" ] && [ "$2" != "16" ] && [ "$2" != "32" ] && [ "$2" != "64" ] -then +if [ "$2" != "01" ] && [ "$2" != "02" ] && [ "$2" != "04" ] && [ "$2" != "08" ] && [ "$2" != "16" ] && [ "$2" != "32" ] && [ "$2" != "64" ]; then echo "thread-count must be a member of the set [01|02|04|08|16|32|64]" exit 1 fi @@ -57,11 +53,11 @@ fi rm -fr examples/benchmark/Bm$1$2.json # Start the event generator -/bin/bash bin/apexApps.sh event-gen -c examples/benchmark/EventGeneratorConfig.json -o examples/benchmark/Bm$1$2.json > examples/benchmark/Bm$1$2_gen.log 2>&1 & +/bin/ash bin/apexApps.sh event-gen -c examples/benchmark/EventGeneratorConfig.json -o examples/benchmark/Bm$1$2.json > examples/benchmark/Bm$1$2_gen.log 2>&1 & # Start Apex sleep 2 -/bin/bash bin/apexApps.sh engine -c examples/benchmark/$1$2.json > examples/benchmark/Bm$1$2_apex.log 2>&1 & +/bin/ash bin/apexApps.sh engine -c examples/benchmark/$1$2.json > examples/benchmark/Bm$1$2_apex.log 2>&1 & apex_pid=`ps -A -o pid,cmd | grep ApexMain | grep -v grep | head -n 1 | awk '{print $1}'` echo "running benchmark test for executor $1 with $2 threads" -- cgit 1.2.3-korg