summaryrefslogtreecommitdiff
path: root/openstackclient/api/auth.py
diff options
context:
space:
mode:
authorDean Troyer <dtroyer@gmail.com>2016-06-22 11:48:33 -0500
committerDean Troyer <dtroyer@gmail.com>2016-06-22 13:54:32 -0500
commitccbb2dd1e8aaa5d2f34a30763f71125688c8dfac (patch)
tree427cbdbfc99d19b7abbc36614695de41b12a10d0 /openstackclient/api/auth.py
parentfd03f5250a61334938d700b568e6f777f92d572c (diff)
downloadpython-openstackclient-ccbb2dd1e8aaa5d2f34a30763f71125688c8dfac.tar.gz
Remove OSCGenericPassword plugin
The need for this has passed plus with 3.0 we can take the breakage hit, if any. Change-Id: Ic019842f00033d2cd67b75f036e7e817e4b7c075
Diffstat (limited to 'openstackclient/api/auth.py')
-rw-r--r--openstackclient/api/auth.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/api/auth.py b/openstackclient/api/auth.py
index d5412594..0c82fe9b 100644
--- a/openstackclient/api/auth.py
+++ b/openstackclient/api/auth.py
@@ -86,7 +86,7 @@ def select_auth_plugin(options):
auth_plugin_name = 'v2password'
else:
# let keystoneclient figure it out itself
- auth_plugin_name = 'osc_password'
+ auth_plugin_name = 'password'
elif options.auth.get('token'):
if options.identity_api_version == '3':
auth_plugin_name = 'v3token'
@@ -98,7 +98,7 @@ def select_auth_plugin(options):
else:
# The ultimate default is similar to the original behaviour,
# but this time with version discovery
- auth_plugin_name = 'osc_password'
+ auth_plugin_name = 'password'
LOG.debug("Auth plugin %s selected", auth_plugin_name)
return auth_plugin_name