From fbde78843d35c2c233c9e9dfcd43214f5893ac89 Mon Sep 17 00:00:00 2001 From: subhash kumar singh Date: Thu, 24 Aug 2017 01:24:03 +0530 Subject: 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 --- deployment/zip/src/main/release/bin/onap.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'deployment') 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 -- cgit 1.2.3-korg