Merge "compute: Better help text for 'openstack server set --state'"

This commit is contained in:
Zuul 2021-06-16 20:55:31 +00:00 committed by Gerrit Code Review
commit 89f6d7bf35

@ -4023,7 +4023,12 @@ class SetServer(command.Command):
'--state',
metavar='<state>',
choices=['active', 'error'],
help=_('New server state (valid value: active, error)'),
help=_(
'New server state '
'**WARNING** This can result in instances that are no longer '
'usable and should be used with caution '
'(admin only)'
),
)
parser.add_argument(
'--description',