Files
@ 2c3887be1f40
Branch filter:
Location: FVDE/ennstatus/Scripts/init_script_gunicorn.sh - annotation
2c3887be1f40
665 B
text/x-sh
Add autosubmit to country selectors
This is done by adding onchange=this.form.submit().
By this we remove some clutter, which is unecessary, especially on small
screens
This is done by adding onchange=this.form.submit().
By this we remove some clutter, which is unecessary, especially on small
screens
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
|