mirror of
https://gitee.com/BDWare/agent-backend
synced 2025-01-10 18:04:13 +00:00
11 lines
174 B
Bash
11 lines
174 B
Bash
|
#!/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
|