mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 09:27:25 +00:00
13 lines
238 B
Bash
Executable file
13 lines
238 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PLINE=$(ps -ef | grep "stratum config/$1" | grep -v grep)
|
|
if [ $? ]; then
|
|
PS=$(echo $PLINE | cut -d ' ' -f 2)
|
|
if [ $PS ]; then
|
|
kill $PS
|
|
echo "killed stratum process $PS"
|
|
else
|
|
echo "Process not found"
|
|
exit 1
|
|
fi
|
|
fi
|