From 21ff7987db925d170a09dded2b1f5a80b1d30741 Mon Sep 17 00:00:00 2001 From: Juan Manuel Parrilla Date: Tue, 27 May 2014 23:54:39 +0200 Subject: [PATCH] Adapted init script to gunicorn --- rpm/scripts/shelfzilla | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/rpm/scripts/shelfzilla b/rpm/scripts/shelfzilla index 95203e4..de6a55f 100644 --- a/rpm/scripts/shelfzilla +++ b/rpm/scripts/shelfzilla @@ -1,11 +1,11 @@ #!/bin/sh # # Shefzilla Init script Adapted -## Nginx -## FactCGI +## Nginx +## FactCGI # # chkconfig: - 85 15 -# +# # Source function library. . /etc/rc.d/init.d/functions @@ -19,7 +19,7 @@ function check () echo $2": "$error else echo $2": "$ok - fi + fi } function validations() { @@ -33,6 +33,8 @@ function validations() { LOG_FILE=shelfzilla.log FCGI_PORT=8080 FCGI_IP=127.0.0.1 + MOD=shelfzilla.settings.configfile + SZ_CONFIG_FILE=/opt/shelfzilla.toml ## Folders [ -d "${PID_PATH}" ] || mkdir -p "${PID_PATH}" @@ -46,22 +48,22 @@ function status(){ if [ "$1" == "start" ];then [ -z "`pidof nginx`" ] && service nginx start #[ -z "`pidof python2.7`" ] && runuser -l shelfzilla -c "python2.7 ${BASE_PATH}/manage.py runfcgi host=${FCGI_IP} port=${FCGI_PORT}" - [ -z "`pidof python2.7`" ] && python2.7 ${BASE_PATH}/manage.py runfcgi host=${FCGI_IP} port=${FCGI_PORT} - check $? "FCGI" + [ -z "`pidof python2.7`" ] && python2.7 ${BASE_PATH}/manage.py run_gunicorn -b ${FCGI_IP}:${FCGI_PORT} -e DJANGO_SETTINGS_MODULE=${MOD} -e APP_CONFIGFILE=${SZ_CONFIG_FILE} + check $? "Gunicorn" elif [ "$1" == "stop" ];then [ -z "`pidof nginx`" ] || service nginx stop [ -z "`pidof python2.7`" ] || pkill python2.7 - check $? "FCGI" + check $? "Gunicorn" else service nginx status FCGI=`pidof python2.7` if [ -z "${FCGI}" ];then - echo -n "FCGI Server is down" + echo -n "Gunicorn Server is down" echo "" else - echo -n "FCGI Server is up (${FCGI})" + echo -n "Gunicorn Server is up (${FCGI})" echo "" fi fi @@ -76,7 +78,7 @@ function restart() { validations case "$1" in start) - status "start" + status "start" ;; stop) status "stop" @@ -90,4 +92,4 @@ case "$1" in *) echo $"Usage: $0 {start|stop|restart|status}" exit 2 -esac \ No newline at end of file +esac