diff options
| author | termie <github@anarkystic.com> | 2011-11-14 15:50:46 -0800 |
|---|---|---|
| committer | termie <github@anarkystic.com> | 2011-11-14 15:50:46 -0800 |
| commit | 1335e4c2ea5a9edac23d00a235016d88887fb701 (patch) | |
| tree | 4a26ac423782fcc486c8e33d80f913e0e9e881b1 /bin/keystone | |
| parent | 9d998211529fb6de24d7a62718ad2a850f19557e (diff) | |
cli for adding users, tenants, extras
Diffstat (limited to 'bin/keystone')
| -rwxr-xr-x | bin/keystone | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/keystone b/bin/keystone index 8347fe22..f902c31b 100755 --- a/bin/keystone +++ b/bin/keystone @@ -28,7 +28,8 @@ if __name__ == '__main__': conf = len(sys.argv) > 1 and sys.argv[1] or default_conf app = deploy.loadapp('config:%s' % conf) + options = deploy.appconfig('config:%s' % conf) server = wsgi.Server() - server.start(app, int(app.options['public_port'])) - server.start(app, int(app.options['admin_port'])) + server.start(app, int(options['public_port'])) + server.start(app, int(options['admin_port'])) server.wait() |
