docs: Document video resolution config.
[mediagoblin.git] / lazystarter.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 selfname=$(basename "$0")
20 local_bin="./bin"
21
22 case "$selfname" in
23 lazyserver.sh)
24 starter_cmd=paster;
25 ini_prefix=paste
26 ;;
27 lazycelery.sh)
28 starter_cmd=celery
29 ini_prefix=mediagoblin
30 ;;
31 *)
32 echo "Start this script with the name lazyserver.sh or lazycelery.sh">&2
33 exit 1
34 ;;
35 esac
36
37 if [ "$1" = "-h" ]; then
38 echo "$0 [-h] [-c filename.ini] [ARGS_to_${starter_cmd} ...]"
39 echo ""
40 echo " For example:"
41 echo " $0 --server-name=main --log-file=paste.log"
42 echo ""
43 echo " The configfile defaults to ${ini_prefix}_local.ini,"
44 echo " if that is readable, otherwise ${ini_prefix}.ini."
45 exit 1
46 fi
47
48 if [ "$1" = "-c" ]; then
49 ini_file=$2
50 shift; shift
51 elif [ -r "${ini_prefix}_local.ini" ]; then
52 ini_file="${ini_prefix}_local.ini"
53 else
54 ini_file="${ini_prefix}.ini"
55 fi
56
57 echo "Using ${starter_cmd} config: ${ini_file}"
58
59 if [ -f "${local_bin}/${starter_cmd}" ]; then
60 echo "Using ${local_bin}/${starter_cmd}"
61 starter="${local_bin}/${starter_cmd}"
62 elif which "${starter_cmd}" > /dev/null; then
63 echo "Using ${starter_cmd} from \$PATH"
64 starter=$starter_cmd
65 else
66 echo "No ${starter_cmd} found, exiting! X_X"
67 exit 1
68 fi
69
70 # If the user somehow doesn't have a mediagoblin.ini
71 # (maybe they aren't using make) give them one
72 # ... this doesn't fulfill all conditions maybe, but is a stopgap
73 # that doesn't have noticable race conditions
74 if [ -f mediagoblin.example.ini ] && \
75 [ ! -f mediagoblin.ini ]; then
76 echo "No mediagoblin.ini found, making one";
77 cp --no-clobber mediagoblin.example.ini mediagoblin.ini;
78 fi
79
80 set -x
81 export CELERY_ALWAYS_EAGER=true
82 case "$selfname" in
83 lazyserver.sh)
84 $starter serve "$ini_file" "$@" --reload;
85 ;;
86 lazycelery.sh)
87 MEDIAGOBLIN_CONFIG="${ini_file}" \
88 CELERY_CONFIG_MODULE=mediagoblin.init.celery.from_celery \
89 $starter worker -B "$@"
90 ;;
91 *) exit 1 ;;
92 esac