mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Fixed another typo in the runit script.
This commit is contained in:
parent
e22daee056
commit
6e13a0fcd9
@ -152,7 +152,7 @@ PID=/var/run/gunicorn.pid
|
|||||||
|
|
||||||
APP=main:application
|
APP=main:application
|
||||||
|
|
||||||
if [ -f $PID ]; then rm $PID fi
|
if [ -f $PID ]; then rm $PID; fi
|
||||||
|
|
||||||
cd $ROOT
|
cd $ROOT
|
||||||
exec $GUNICORN -c $ROOT/gunicorn.conf.py --pid=$PID $APP
|
exec $GUNICORN -c $ROOT/gunicorn.conf.py --pid=$PID $APP
|
||||||
|
|||||||
@ -138,7 +138,7 @@ An `example service`_ definition::
|
|||||||
|
|
||||||
APP=main:application
|
APP=main:application
|
||||||
|
|
||||||
if [ -f $PID ]; then rm $PID fi
|
if [ -f $PID ]; then rm $PID; fi
|
||||||
|
|
||||||
cd $ROOT
|
cd $ROOT
|
||||||
exec $GUNICORN -c $ROOT/gunicorn.conf.py --pid=$PID $APP
|
exec $GUNICORN -c $ROOT/gunicorn.conf.py --pid=$PID $APP
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user