/usr/bin/sahara-wsgi-api is in sahara-common 1:4.0.0-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #!/usr/bin/python2.7
#PBR Generated from u'wsgi_scripts'
import threading
from sahara.cli.sahara_api import setup_api
if __name__ == "__main__":
import argparse
import socket
import wsgiref.simple_server as wss
my_ip = socket.gethostbyname(socket.gethostname())
parser = argparse.ArgumentParser(
description=setup_api.__doc__,
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument('--port', '-p', type=int, default=8000,
help='TCP port to listen on')
args = parser.parse_args()
server = wss.make_server('', args.port, setup_api())
print("*" * 80)
print("STARTING test server sahara.cli.sahara_api.setup_api")
url = "http://%s:%d/" % (my_ip, server.server_port)
print("Available at %s" % url)
print("DANGER! For testing only, do not use in production")
print("*" * 80)
server.serve_forever()
else:
application = None
app_lock = threading.Lock()
with app_lock:
if application is None:
application = setup_api()
|