1
0
mirror of https://github.com/donaldzou/WGDashboard.git synced 2024-06-30 22:50:14 +02:00

fixed stop

This commit is contained in:
Galonza Peter 2021-10-18 03:10:50 +03:00
parent e0bf648076
commit c3eaaed43b

View File

@ -42,11 +42,18 @@ install_wgd(){
check_wgd_status(){
if ps aux | grep '[p]ython3 '$app_name > /dev/null;
then
if [[ $environment == 'production' ]]; then
if ps aux | grep -v grep | cat ./gunicorn.pid > /dev/null; then
return 0
else
return 1
else
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
}