agent-backend/script/cmstop.sh

16 lines
310 B
Bash
Raw Permalink Normal View History

2021-10-29 09:47:48 +00:00
#!/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
2021-10-29 09:47:48 +00:00
kill -9 $(cat PID)
echo "shutdown old contract manager"
fi
rm ./PID
fi