aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElrond <elrond+mediagoblin.org@samba-tng.org>2011-10-23 23:54:00 +0200
committerElrond <elrond+mediagoblin.org@samba-tng.org>2011-10-23 23:57:39 +0200
commitb63eadb08c1d1b475f4fa201442055ec02f05a47 (patch)
tree5f5b41e7ea3d6a0910a703b279a2509d990b9891
parent312643c12cdd48e558b36c4751b9d8bdecf445d1 (diff)
downloadmediagoblin-b63eadb08c1d1b475f4fa201442055ec02f05a47.tar.lz
mediagoblin-b63eadb08c1d1b475f4fa201442055ec02f05a47.tar.xz
mediagoblin-b63eadb08c1d1b475f4fa201442055ec02f05a47.zip
lazyserver.sh: Try paste_local.ini before paste.ini
If users have a paste_local.ini, use that one instead of the shipped paste.ini. That way local changes will not interfere with the main shipped config. Also improve the help string (./lazyserver.sh -h) a bit.
-rwxr-xr-xlazyserver.sh17
1 files changed, 15 insertions, 2 deletions
diff --git a/lazyserver.sh b/lazyserver.sh
index e4afdaa5..63818a6a 100755
--- a/lazyserver.sh
+++ b/lazyserver.sh
@@ -18,13 +18,24 @@
if [ "$1" = "-h" ]
then
- echo "$0 [-h] [-c paste.ini] ARGS_to_paster"
+ echo "$0 [-h] [-c paste.ini] [ARGS_to_paster ...]"
+ echo ""
echo " For example:"
- echo " $0 -c fcgi.ini port_number=23371"
+ echo " $0 -c fcgi.ini port_number=23371"
+ echo " or: $0 --server-name=fcgi"
+ echo ""
+ echo " The configfile defaults to paste_local.ini,"
+ echo " if that is readable, otherwise paste.ini."
exit 1
fi
PASTE_INI=paste.ini
+
+if [ -r paste_local.ini ]
+then
+ PASTE_INI=paste_local.ini
+fi
+
if [ "$1" = "-c" ]
then
PASTE_INI="$2"
@@ -32,6 +43,8 @@ then
shift
fi
+echo "Using paste config: $PASTE_INI"
+
if [ -f ./bin/paster ]; then
echo "Using ./bin/paster";
export PASTER="./bin/paster";