Fixed another typo in the runit script.

This commit is contained in:
Paul J. Davis 2011-04-28 21:11:57 -04:00 committed by benoitc
parent e22daee056
commit 6e13a0fcd9
2 changed files with 4 additions and 4 deletions

View File

@ -152,7 +152,7 @@ PID=/var/run/gunicorn.pid
APP=main:application
if [ -f $PID ]; then rm $PID fi
if [ -f $PID ]; then rm $PID; fi
cd $ROOT
exec $GUNICORN -c $ROOT/gunicorn.conf.py --pid=$PID $APP

View File

@ -137,9 +137,9 @@ An `example service`_ definition::
PID=/var/run/gunicorn.pid
APP=main:application
if [ -f $PID ]; then rm $PID fi
if [ -f $PID ]; then rm $PID; fi
cd $ROOT
exec $GUNICORN -c $ROOT/gunicorn.conf.py --pid=$PID $APP