fix(DBServer,Gateway,LogicServer): 修正停止脚本中的服务变量定义

- 在 DBServer、Gateway 和 LogicServer 的停止脚本中,
  将服务变量 srv 的定义从错误的格式改为正确的格式
- 例如:将 `srv = $"dbserver"` 修改为
This commit is contained in:
aixianling
2025-02-20 16:03:40 +08:00
parent b4aa99adbf
commit d75ca0eadb
3 changed files with 3 additions and 3 deletions

View File

@@ -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}')

View File

@@ -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}')

View File

@@ -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}')