mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2024-11-19 05:50:10 +01:00
fixed stop
This commit is contained in:
parent
e0bf648076
commit
c3eaaed43b
15
src/wgd.sh
15
src/wgd.sh
@ -42,11 +42,18 @@ install_wgd(){
|
|||||||
|
|
||||||
|
|
||||||
check_wgd_status(){
|
check_wgd_status(){
|
||||||
if ps aux | grep '[p]ython3 '$app_name > /dev/null;
|
if [[ $environment == 'production' ]]; then
|
||||||
then
|
if ps aux | grep -v grep | cat ./gunicorn.pid > /dev/null; then
|
||||||
return 0
|
return 0
|
||||||
else
|
else
|
||||||
return 1
|
return 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if ps aux | grep -v grep |grep '[p]ython3 '$app_name > /dev/null; then
|
||||||
|
return 0
|
||||||
|
else
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user