From 186a9970e605c6c18bc25e82bfc83e59cfd79922 Mon Sep 17 00:00:00 2001 From: Brad Pokorny Date: Wed, 6 Nov 2013 18:53:57 +0000 Subject: [PATCH] Remove service type restriction from keystone client help text The current output of "keystone help service-create" implies that the type is restricted to certain values. This commit updates the help text to make it more clear that the value isn't validated. Closes bug 1248658 Closes bug 1211292 Change-Id: Ice4bf0da135d371ab5b6339f7baac7309e9c40ce --- keystoneclient/v2_0/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keystoneclient/v2_0/shell.py b/keystoneclient/v2_0/shell.py index d241571fe..f9c1d15f7 100644 --- a/keystoneclient/v2_0/shell.py +++ b/keystoneclient/v2_0/shell.py @@ -236,7 +236,7 @@ def do_tenant_delete(kc, args): help='Name of new service (must be unique)') @utils.arg('--type', metavar='', required=True, help='Service type (one of: identity, compute, network, ' - 'image, or object-store)') + 'image, object-store, or other service identifier string)') @utils.arg('--description', metavar='', help='Description of service') def do_service_create(kc, args):