diff options
author | Cory Stone <corystone@gmail.com> | 2014-02-14 13:42:58 -0600 |
---|---|---|
committer | Cory Stone <corystone@gmail.com> | 2014-02-14 15:09:44 -0600 |
commit | d5334aa929beb4190ae04fddc98e693df142b9bd (patch) | |
tree | 62b025148cdb867473fa6c994da7087d82c10c00 /tools | |
parent | 6fd8d8e12e7788e7f5b85bc3b8ef2f6ee2eb7714 (diff) | |
download | python-cinderclient-d5334aa929beb4190ae04fddc98e693df142b9bd.tar.gz |
Add auth_plugin support to cinderclient
With CINDER_RAX_AUTH being rightfully removed, cinderclient is no longer
compatible with Rackspace/any non-keystone auth. To fix this, I stole
auth_system/auth_plugin from novaclient's implementation.
See https://review.openstack.org/#/c/23820/.
Change-Id: If5f84003f868ef02bb7eb7da67cf62018602e8f0
Closes-Bug: 1280393
Diffstat (limited to 'tools')
-rw-r--r-- | tools/install_venv_common.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/install_venv_common.py b/tools/install_venv_common.py index 46822e3..3b7ac10 100644 --- a/tools/install_venv_common.py +++ b/tools/install_venv_common.py @@ -128,6 +128,9 @@ class InstallVenv(object): "install") return parser.parse_args(argv[1:])[0] + def post_process(self, **kwargs): + pass + class Distro(InstallVenv): |