diff options
| author | Dean Troyer <dtroyer@gmail.com> | 2014-08-27 23:25:44 -0500 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2014-08-28 08:29:32 -0500 |
| commit | 1ab38679b61290bcb204508dc34bed564e31cbcf (patch) | |
| tree | 40629f1b35e6fe6a670d54d29a727d65bb059d49 /setup.cfg | |
| parent | 7a8c9a7a8a69bb520c241d40b8ecaa1deab96355 (diff) | |
| download | python-openstackclient-1ab38679b61290bcb204508dc34bed564e31cbcf.tar.gz | |
Make Identity client load like the others
This does a couple of things:
* Loads the Identity client module in the same manner as the other
'base' clients (where 'base' == 'included in the OSC repo')
* Changes the entry point group name for the base clients to
'openstack.cli.base'. The extension group name remains the same.
* Loads the base modules first followed by the extension modules.
This load order ensures that the extension module commands are all
loaded _after_ the base commands, allowing extensions to now override
the base commands.
Change-Id: I4b9ca7f1df6eb8bbe8e3f663f3065c2ed80ce20b
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -30,8 +30,9 @@ console_scripts = openstack.cli = module_list = openstackclient.common.module:ListModule -openstack.cli.extension = +openstack.cli.base = compute = openstackclient.compute.client + identity = openstackclient.identity.client image = openstackclient.image.client network = openstackclient.network.client object_store = openstackclient.object.client |
