~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to start-loggerhead

  • Committer: Martin Albisetti
  • Date: 2008-11-25 02:55:57 UTC
  • mfrom: (245.1.1 initscript-non-root)
  • Revision ID: argentina@gmail.com-20081125025557-8es5u9e300s7pv01
Allow the script to run as root or another user, but start the loggerhead process as the correct user (Tom Haddon)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import sys
24
24
import urlparse
25
25
 
26
 
from bzrlib.plugin import load_plugins
27
 
from bzrlib.util.configobj.configobj import ConfigObj
 
26
from configobj import ConfigObj
28
27
 
29
28
from paste import httpserver
30
29
from paste.httpexceptions import make_middleware
116
115
        def app(environ, start_response, orig=app):
117
116
            environ['SCRIPT_NAME'] = path
118
117
            environ['HTTP_HOST'] = netloc
119
 
            environ['wsgi.url_scheme'] = scheme
120
118
            return orig(environ, start_response)
121
119
 
122
 
    load_plugins()
123
 
 
124
120
    try:
125
121
        httpserver.serve(
126
122
            app, host=server_host, port=server_port,