mirror of
https://gitee.com/BDWare/agent-backend
synced 2025-04-28 15:12:16 +00:00
16 lines
286 B
Bash
Executable File
16 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -a "./PID" ]; then
|
|
if [ -d '/proc' ]; then
|
|
ls /proc/$(cat PID)/cmdline
|
|
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
|