~ziad-sawalha/keystone/trunk

« back to all changes in this revision

Viewing changes to echo/bin/echod

  • Committer: Ziad Sawalha
  • Date: 2011-05-26 01:24:05 UTC
  • mfrom: (87.5.8)
  • Revision ID: git-v1:b0d12a558f590a501a42afd1283148961563920e
Merge pull request 53

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
# Copyright (C) 2011 OpenStack LLC.
3
 
#
4
 
# Licensed under the Apache License, Version 2.0 (the "License");
5
 
# you may not use this file except in compliance with the License.
6
 
# You may obtain a copy of the License at
7
 
#
8
 
#     http://www.apache.org/licenses/LICENSE-2.0
9
 
#
10
 
# Unless required by applicable law or agreed to in writing, software
11
 
# distributed under the License is distributed on an "AS IS" BASIS,
12
 
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 
# See the License for the specific language governing permissions and
14
 
# limitations under the License.
15
 
 
16
 
# If ../echo/__init__.py exists, add ../ to the Python search path so
17
 
# that it will override whatever may be installed in the default Python
18
 
# search path.
19
 
script_dir=`dirname $0`
20
 
if [ -f "$script_dir/../echo/__init__.py" ]
21
 
then
22
 
    PYTHONPATH="$script_dir/..:$PYTHONPATH"
23
 
    export PYTHONPATH
24
 
fi
25
 
 
26
 
/usr/bin/env python -m echo.server $*