mirror of
https://gitee.com/BDWare/agent-backend
synced 2025-01-10 09:54:11 +00:00
11 lines
174 B
Bash
Executable File
11 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -a "./PID" ]; then
|
|
ls /proc/$(cat PID)/cmdline
|
|
if [ $? -eq 0 ]; then
|
|
kill -9 $(cat PID)
|
|
echo "shutdown old contract manager"
|
|
fi
|
|
rm ./PID
|
|
fi
|