mirror of
https://gitee.com/BDWare/agent-backend
synced 2025-01-09 17:34:13 +00:00
b975a0227a
update SelfAdaptiveShardingExecutor to add height to the blocks; update cmstop.sh to not print error message when process doesn't exits
16 lines
310 B
Bash
Executable File
16 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -a "./PID" ]; then
|
|
if [ -d '/proc' ]; then
|
|
ls /proc/$(cat PID)/cmdline 1>/dev/null 2>/dev/null
|
|
if [ $? -eq 0 ]; then
|
|
kill -9 $(cat PID)
|
|
echo "shutdown old contract manager"
|
|
fi
|
|
else
|
|
kill -9 $(cat PID)
|
|
echo "shutdown old contract manager"
|
|
fi
|
|
rm ./PID
|
|
fi
|