Files
@ 4c27322acc94
Branch filter:
Location: FVDE/ennstatus/Scripts/init_script_gunicorn.sh - annotation
4c27322acc94
665 B
text/x-sh
Make images more responsive
Also use center-block on images instead of text-center
Also use center-block on images instead of text-center
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
|