Merge "docs: clarify compute service --service option"

This commit is contained in:
Zuul 2019-07-16 11:49:03 +00:00 committed by Gerrit Code Review
commit afe1f02c8b
2 changed files with 7 additions and 4 deletions
doc/source/cli/command-objects
openstackclient/compute/v2

@ -39,7 +39,8 @@ List compute services
.. option:: --service <service>
List only specified service (name only)
List only specified service binaries (name only). For example,
``nova-compute``, ``nova-conductor``, etc.
.. option:: --long
@ -86,4 +87,4 @@ Set compute service properties
.. describe:: <service>
Name of service (Binary name)
Name of service (Binary name), for example ``nova-compute``

@ -72,7 +72,8 @@ class ListService(command.Lister):
parser.add_argument(
"--service",
metavar="<service>",
help=_("List only specified service (name only)")
help=_("List only specified service binaries (name only). For "
"example, ``nova-compute``, ``nova-conductor``, etc.")
)
parser.add_argument(
"--long",
@ -126,7 +127,8 @@ class SetService(command.Command):
parser.add_argument(
"service",
metavar="<service>",
help=_("Name of service (Binary name)")
help=_("Name of service (Binary name), for example "
"``nova-compute``")
)
enabled_group = parser.add_mutually_exclusive_group()
enabled_group.add_argument(