summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authortermie <github@anarkystic.com>2012-01-24 16:33:31 -0800
committertermie <github@anarkystic.com>2012-01-24 16:33:31 -0800
commitf5dbc98dffa3216506453c6dbf038972577fe3fc (patch)
tree2b0375704c1b75e2bff2beb56171c761918142bd /bin
parent51a2c185ff41b373def1f6c7f7635f652c0d1dff (diff)
downloadkeystone-f5dbc98dffa3216506453c6dbf038972577fe3fc.tar.gz
keystone-f5dbc98dffa3216506453c6dbf038972577fe3fc.tar.xz
keystone-f5dbc98dffa3216506453c6dbf038972577fe3fc.zip
add ec2 credentials to the cli
Diffstat (limited to 'bin')
-rwxr-xr-xbin/keystone-manage5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/keystone-manage b/bin/keystone-manage
index ff97f7e4..9729be09 100755
--- a/bin/keystone-manage
+++ b/bin/keystone-manage
@@ -165,12 +165,17 @@ class User(ClientCommand):
pass
+class Ec2(ClientCommand):
+ pass
+
+
CMDS = {'db_sync': DbSync,
'role': Role,
'service': Service,
'token': Token,
'tenant': Tenant,
'user': User,
+ 'ec2': Ec2,
}