Files
@ 4a142551e694
Branch filter:
Location: FVDE/ennstatus/Scripts/init_script_gunicorn.sh - annotation
4a142551e694
665 B
text/x-sh
Fixed manage.py to new configuration loading
f20b94715c5b f20b94715c5b 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 f20b94715c5b 6a5c394ba785 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 f20b94715c5b f20b94715c5b 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 592bcf2e1517 | #!/bin/sh
NAME=ennstatus
DESC=ennstatus
start () {
. /var/www/enn.lu/ennstatus/bin/activate
gunicorn -w 4 --chdir /var/www/enn.lu/ennstatus/chroot/ -D -p /tmp/ennstatus.pid -u www-data -g www-data -b 127.0.0.1 ennstatus:create_app\(\)
return
}
stop () {
kill $(cat /tmp/ennstatus.pid)
return
}
case "$1" in
start)
echo "Starting $DESC"
start
;;
stop)
echo "Stopping $DESC"
stop
;;
restart)
echo "Restarting $DESC"
stop
sleep 1
start
;;
*)
echo "Usage: ennstatus {start|stop|restart}"
exit 1
;;
esac
exit 0
|