Enable specifying the Host IP using Script
[holmes/engine-management.git] / engine-d-standalone / src / main / assembly / bin / run.sh
index 59869ee..59a1c18 100644 (file)
@@ -1,3 +1,5 @@
+#!/bin/bash
+
 #
 # Copyright 2017 ZTE Corporation.
 #
@@ -41,6 +43,14 @@ sed -i "s|url:.*|url: jdbc:postgresql://$URL_JDBC/holmes|" "$main_path/conf/engi
 export SERVICE_IP=`hostname -i`
 echo SERVICE_IP=${SERVICE_IP}
 
+if [ ! -z ${TESTING} ] && [ ${TESTING} == 1 ]; then
+    if [ ! -z ${HOST_IP} ]; then
+        export HOSTNAME=${HOST_IP}:9102
+    else
+        export HOSTNAME=${SERVICE_IP}:9102
+    fi
+fi
+
 #ActiveMQ IP Configurations
 sed -i "s|brokerIp:.*|brokerIp: $SERVICE_IP|" "$main_path/conf/engine-d.yml"