843993e6c05f2bef897a644c345564d7dc3d14fd
[mediagoblin.git] / lazyserver.sh
1 #!/bin/sh
2
3 # GNU MediaGoblin -- federated, autonomous media hosting
4 # Copyright (C) 2011 Free Software Foundation, Inc
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU Affero General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU Affero General Public License for more details.
15 #
16 # You should have received a copy of the GNU Affero General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19 #
20 # This runs Mediagoblin using Paste with Celery set to always eager mode.
21 #
22
23 if [ "$1" = "-h" ]
24 then
25 echo "$0 [-h] [-c paste.ini] [ARGS_to_paster ...]"
26 echo ""
27 echo " For example:"
28 echo " $0 -c fcgi.ini port_number=23371"
29 echo " or: $0 --server-name=fcgi --log-file=paste.log"
30 echo ""
31 echo " The configfile defaults to paste_local.ini,"
32 echo " if that is readable, otherwise paste.ini."
33 exit 1
34 fi
35
36 PASTE_INI=paste.ini
37
38 if [ -r paste_local.ini ]
39 then
40 PASTE_INI=paste_local.ini
41 fi
42
43 if [ "$1" = "-c" ]
44 then
45 PASTE_INI="$2"
46 shift
47 shift
48 fi
49
50 echo "Using paste config: $PASTE_INI"
51
52 if [ -f ./bin/paster ]; then
53 echo "Using ./bin/paster";
54 export PASTER="./bin/paster";
55 elif which paster > /dev/null; then
56 echo "Using paster from \$PATH";
57 export PASTER="paster";
58 else
59 echo "No paster found, exiting! X_X";
60 exit 1
61 fi
62
63 set -x
64 CELERY_ALWAYS_EAGER=true $PASTER serve $PASTE_INI "$@" --reload