diff options
author | Guangrong Fu <fu.guangrong@zte.com.cn> | 2017-09-18 14:16:43 +0800 |
---|---|---|
committer | Guangrong Fu <fu.guangrong@zte.com.cn> | 2017-09-18 14:16:43 +0800 |
commit | d5e59a99557d9ff2bcc0f34a9f38860c74010e96 (patch) | |
tree | 61faaa3cfb8c3596a0186e8874897a6adedb323b /rulemgt-standalone/src/main/assembly/bin/run.sh | |
parent | 36b66da8dd7e8bd80c93a78433f2094cc99033d3 (diff) |
Fix the Grammatical Error in the Script
Change-Id: Ic1fd8971d0e80c85a42bcd4d14561228ab3b42f2
Issue-ID: HOLMES-45
Signed-off-by: Guangrong Fu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'rulemgt-standalone/src/main/assembly/bin/run.sh')
-rw-r--r-- | rulemgt-standalone/src/main/assembly/bin/run.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rulemgt-standalone/src/main/assembly/bin/run.sh b/rulemgt-standalone/src/main/assembly/bin/run.sh index 487d691..bad26c7 100644 --- a/rulemgt-standalone/src/main/assembly/bin/run.sh +++ b/rulemgt-standalone/src/main/assembly/bin/run.sh @@ -1,3 +1,5 @@ +#!/bin/bash + # # Copyright 2017 ZTE Corporation. # @@ -37,7 +39,7 @@ sed -i "s|msbServerAddr:.*|msbServerAddr: http://$MSB_ADDR|" "$main_path/conf/ru export SERVICE_IP=`hostname -i` echo SERVICE_IP=${SERVICE_IP} -if [ ${TESTING} == 1 ]; then +if [ ${TESTING}==1 ]; then export HOSTNAME=${SERVICE_IP}:9101 fi |