mirror of
https://gitee.com/BDWare/router-backend
synced 2025-01-10 01:44:05 +00:00
11 lines
169 B
Bash
11 lines
169 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -a "./PID" ]; then
|
||
|
ls /proc/$(cat PID)/cmdline
|
||
|
if [ $? -eq 0 ]; then
|
||
|
kill -9 $(cat PID)
|
||
|
echo "shutdown old node center"
|
||
|
fi
|
||
|
rm ./PID
|
||
|
fi
|