source: OpenWorkouts-current/bin/stop

current
Last change on this file was b979798, checked in by Borja Lopez <borja@…>, 5 years ago

Fixed bin/stop so it stops uwsgi instead of pserve

  • Property mode set to 100755
File size: 404 bytes
Line 
1#!/bin/sh
2#
3# Script to stop OpenWorkouts
4#
5
6# Full path to where we run the script from
7current=`pwd`
8# Full path to the env
9env_path=${current}/env
10
11# Activate the virtual env
12. ${env_path}/bin/activate
13
14# stop pserve
15echo "Stopping OpenWorkouts"
16./bin/uwsgi_stop
17#kill -15 `cat var/run/pserve.pid`
18
19# Stop ZEO
20echo "Stopping database"
21./bin/zeo_stop >> var/log/zeo_stop.log 2>> var/log/zeo_stop.err &
Note: See TracBrowser for help on using the repository browser.