diff options
author | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2011-07-03 01:53:10 +0200 |
---|---|---|
committer | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2011-07-03 01:57:08 +0200 |
commit | 472a83879d9f089b416ca682bef8a480a9748da4 (patch) | |
tree | 8ba336ee691427010a8971b2b001a541a9bd8e9c /lazyserver.sh | |
parent | 841110a75d56f3e120691c43f85b3dd4b5fa1e56 (diff) | |
download | mediagoblin-472a83879d9f089b416ca682bef8a480a9748da4.tar.lz mediagoblin-472a83879d9f089b416ca682bef8a480a9748da4.tar.xz mediagoblin-472a83879d9f089b416ca682bef8a480a9748da4.zip |
Improve lazyserver.sh to handle args
Run "./lazyserver.sh -h" to learn more.
Diffstat (limited to 'lazyserver.sh')
-rwxr-xr-x | lazyserver.sh | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/lazyserver.sh b/lazyserver.sh index fdb03ba0..4f10f771 100755 --- a/lazyserver.sh +++ b/lazyserver.sh @@ -16,6 +16,22 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +if [ "$1" = "-h" ] +then + echo "$0 [-h] [-c paste.ini] ARGS_to_paster" + echo " For example:" + echo " $0 -c fcgi.ini port_number=23371" + exit 1 +fi + +PASTE_INI=paste.ini +if [ "$1" = "-c" ] +then + PASTE_INI="$2" + shift + shift +fi + if [ -f ./bin/paster ]; then echo "Using ./bin/paster"; export PASTER="./bin/paster"; @@ -27,4 +43,5 @@ else exit 1 fi -CELERY_ALWAYS_EAGER=true $PASTER serve paste.ini --reload +set -x +CELERY_ALWAYS_EAGER=true $PASTER serve $PASTE_INI "$@" --reload |