diff options
author | Joe Heck <heckj@mac.com> | 2012-01-09 10:28:55 -0800 |
---|---|---|
committer | Joe Heck <heckj@mac.com> | 2012-01-09 12:27:18 -0800 |
commit | 763013c5264e87dc8075d50117e5e394fccef1a7 (patch) | |
tree | 56e3db0488c7693c241fddb66563a261e342aa2e /bin | |
parent | 13ec79bf48a185a6f359d1e6c013bdfe24b7da53 (diff) | |
download | keystone-763013c5264e87dc8075d50117e5e394fccef1a7.tar.gz |
renaming keystonelight to keystone
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/keystone | 6 | ||||
-rwxr-xr-x | bin/ks (renamed from bin/ksl) | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/bin/keystone b/bin/keystone index 7775b2033..58e7b3a94 100755 --- a/bin/keystone +++ b/bin/keystone @@ -12,13 +12,13 @@ possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), os.pardir, os.pardir)) if os.path.exists(os.path.join(possible_topdir, - 'keystonelight', + 'keystone', '__init__.py')): sys.path.insert(0, possible_topdir) from paste import deploy -from keystonelight import wsgi +from keystone import wsgi def create_server(name, port): @@ -49,6 +49,6 @@ if __name__ == '__main__': servers = [] servers.append(create_server('keystone_admin', int(options['admin_port']))) - servers.append(create_server('keystonelight', + servers.append(create_server('keystone', int(options['public_port']))) serve(*servers) @@ -5,7 +5,7 @@ import sys import cli.app import cli.log -from keystonelight import client +from keystone import client DEFAULT_PARAMS = ( |