From: subhash kumar singh Date: Wed, 23 Aug 2017 19:54:03 +0000 (+0530) Subject: Enable remote debugging for onapcli X-Git-Tag: 1.0.0-Amsterdam~190^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=fbde78843d35c2c233c9e9dfcd43214f5893ac89;p=cli.git Enable remote debugging for onapcli Enable remote debugging for onapcli. Introduce following two environment variable: ONAP_CLI_DEBUG: set true to enable remote debugging. ONAP_CLI_DEBUG: set remote debugging port (default 5005). Issue-Id: CLI-36 Change-Id: I971d3bd22d283c44da307896c20ae75e42c51bef Signed-off-by: subhash kumar singh --- diff --git a/deployment/zip/src/main/release/bin/onap.sh b/deployment/zip/src/main/release/bin/onap.sh index e8970848..9650ccd1 100644 --- a/deployment/zip/src/main/release/bin/onap.sh +++ b/deployment/zip/src/main/release/bin/onap.sh @@ -28,4 +28,10 @@ do CLASSPATH=$CLASSPATH:$entry done -java -classpath $CLASSPATH org.onap.cli.main.OnapCli "$@" +if [ "$ONAP_CLI_DEBUG" = "true" ] +then + ${ONAP_CLI_DEBUG_PORT:=5005} + java -Xdebug -Xrunjdwp:transport=dt_socket,address=$ONAP_CLI_DEBUG_PORT,server=y -classpath $CLASSPATH org.onap.cli.main.OnapCli "$@" +else + java -classpath $CLASSPATH org.onap.cli.main.OnapCli "$@" +fi