From d75ca0eadb643b65533773f854dcf711056898bb Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 20 Feb 2025 16:03:40 +0800 Subject: [PATCH] =?UTF-8?q?fix(DBServer,Gateway,LogicServer):=20=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3=E5=81=9C=E6=AD=A2=E8=84=9A=E6=9C=AC=E4=B8=AD=E7=9A=84?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E5=8F=98=E9=87=8F=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 DBServer、Gateway 和 LogicServer 的停止脚本中, 将服务变量 srv 的定义从错误的格式改为正确的格式 - 例如:将 `srv = $"dbserver"` 修改为 --- DBServer/stop.sh | 2 +- Gateway/stop.sh | 2 +- LogicServer/stop.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DBServer/stop.sh b/DBServer/stop.sh index bdc99ac..6dbaeba 100755 --- a/DBServer/stop.sh +++ b/DBServer/stop.sh @@ -1,6 +1,6 @@ #!/bin/bash path=`pwd` -srv = `"dbserver"` +srv="dbserver" datetime=`date "+%Y-%m-%d.%H:%M:%S"` curdoc=$(pwd|awk -F \/ '{print $NF}') diff --git a/Gateway/stop.sh b/Gateway/stop.sh index 8c97a16..7e65e7f 100755 --- a/Gateway/stop.sh +++ b/Gateway/stop.sh @@ -1,6 +1,6 @@ #!/bin/bash path=`pwd` -srv = `"gateway"` +srv="gateway" datetime=`date "+%Y-%m-%d.%H:%M:%S"` curdoc=$(pwd|awk -F \/ '{print $NF}') diff --git a/LogicServer/stop.sh b/LogicServer/stop.sh index f24dad0..200317b 100755 --- a/LogicServer/stop.sh +++ b/LogicServer/stop.sh @@ -1,6 +1,6 @@ #!/bin/bash path=`pwd` -srv = `"logicserver"` +srv="logicserver" datetime=`date "+%Y-%m-%d.%H:%M:%S"` curdoc=$(pwd|awk -F \/ '{print $NF}')