Various makefile fixes
[mediagoblin.git] / lazystarter.sh
CommitLineData
e4df2fc5
BS
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
19selfname=$(basename "$0")
20local_bin="./bin"
21case "$selfname" in
22 lazyserver.sh)
19baab1b 23 starter_cmd=gunicorn
e4df2fc5
BS
24 ini_prefix=paste
25 ;;
26 lazycelery.sh)
27 starter_cmd=celeryd
28 ini_prefix=mediagoblin
29 ;;
30 *)
31 echo "Start this script with the name lazyserver.sh or lazycelery.sh">&2
32 exit 1
33 ;;
34esac
35
36if [ "$1" = "-h" ]; then
37 echo "$0 [-h] [-c filename.ini] [ARGS_to_${starter_cmd} ...]"
38 echo ""
19baab1b
BP
39 echo " For Gunicorn settings, see at:"
40 echo " http://docs.gunicorn.org/en/19.0/settings.html"
e4df2fc5
BS
41 echo ""
42 echo " The configfile defaults to ${ini_prefix}_local.ini,"
43 echo " if that is readable, otherwise ${ini_prefix}.ini."
44 exit 1
45fi
46
47if [ "$1" = "-c" ]; then
48 ini_file=$2
49 shift; shift
50elif [ -r "${ini_prefix}_local.ini" ]; then
51 ini_file="${ini_prefix}_local.ini"
52else
53 ini_file="${ini_prefix}.ini"
54fi
55
56echo "Using ${starter_cmd} config: ${ini_file}"
57
58if [ -f "${local_bin}/${starter_cmd}" ]; then
59 echo "Using ${local_bin}/${starter_cmd}"
60 starter="${local_bin}/${starter_cmd}"
61elif which "${starter_cmd}" > /dev/null; then
62 echo "Using ${starter_cmd} from \$PATH"
63 starter=$starter_cmd
64else
65 echo "No ${starter_cmd} found, exiting! X_X"
66 exit 1
67fi
68
69set -x
70export CELERY_ALWAYS_EAGER=true
71case "$selfname" in
72 lazyserver.sh)
eddb1aaf 73 $starter --paste "$ini_file" --log-file=- $@
e4df2fc5
BS
74 ;;
75 lazycelery.sh)
76 MEDIAGOBLIN_CONFIG="${ini_file}" \
77 CELERY_CONFIG_MODULE=mediagoblin.init.celery.from_celery \
d8f55f2b 78 $starter -B "$@"
e4df2fc5
BS
79 ;;
80 *) exit 1 ;;
81esac