summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authortermie <github@anarkystic.com>2012-01-09 14:32:02 -0800
committertermie <github@anarkystic.com>2012-01-09 14:32:02 -0800
commit8f46af011ea2c4756ac3d9e7d62fc6ce477f8566 (patch)
treeacba8e5283b79377c576634d5491cbe75d86593a /bin
parent2340dee20f614da92a3e3615d06dcd2a3c91dfdf (diff)
basic service running again
Diffstat (limited to 'bin')
-rwxr-xr-xbin/keystone7
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/keystone b/bin/keystone
index 58e7b3a9..07060817 100755
--- a/bin/keystone
+++ b/bin/keystone
@@ -18,9 +18,13 @@ if os.path.exists(os.path.join(possible_topdir,
from paste import deploy
+from keystone import config
from keystone import wsgi
+CONF = config.CONF
+
+
def create_server(name, port):
app = deploy.loadapp('config:%s' % conf, name=name)
return wsgi.Server(app, port)
@@ -40,7 +44,8 @@ def serve(*servers):
if __name__ == '__main__':
default_conf = os.path.join(possible_topdir,
'etc',
- 'default.conf')
+ 'keystone.conf')
+ CONF(config_files=[default_conf])
logging.getLogger().setLevel(logging.DEBUG)
conf = len(sys.argv) > 1 and sys.argv[1] or default_conf