Fix the docker build error for vfc-nfvo-wfengine
[vfc/nfvo/wfengine.git] / wfenginemgrservice / src / main / docker / bin / run.sh
index 002ed1b..4ce6078 100644 (file)
@@ -18,6 +18,21 @@ DIRNAME=`dirname $0`
 RUNHOME=`cd $DIRNAME/; pwd`
 echo @RUNHOME@ $RUNHOME
 
+if [ -z "$1" ]; then
+    dwApp_msbClientConfig_msbSvrIp="127.0.0.1"
+elif [ "$OPENPALETTE_MSB_IP" ]; then
+    dwApp_msbClientConfig_msbSvrIp=$OPENPALETTE_MSB_IP
+else
+    dwApp_msbClientConfig_msbSvrIp=$1
+fi
+if [ -z "$2" ]; then
+    dwApp_msbClientConfig_msbSvrPort="80"
+elif [ "$OPENPALETTE_MSB_PORT" ]; then
+    dwApp_msbClientConfig_msbSvrPort=$OPENPALETTE_MSB_PORT
+else
+    dwApp_msbClientConfig_msbSvrPort=$2
+fi
+echo " dwApp_MSB_ADDR=${dwApp_msbClientConfig_msbSvrIp}:${dwApp_msbClientConfig_msbSvrPort}"
 
 if [ -f "$RUNHOME/setenv.sh" ]; then
   . "$RUNHOME/setenv.sh"
@@ -49,6 +64,8 @@ echo @CLASS_PATH@ $CLASS_PATH
 echo @EXT_DIRS@ $EXT_DIRS
 echo ==========================================================================
 
+echo `env`
+
 echo @JAVA@ $JAVA
 echo @JAVA_CMD@
 "$JAVA" $JAVA_OPTS -classpath "$CLASS_PATH" $Main_Class server "$RUNHOME/$Main_Conf"