Mention multiple option for tags in VM define
This commit is contained in:
parent
6d4c26c8d8
commit
8f3b68d48a
|
@ -641,12 +641,12 @@ def cli_vm():
|
||||||
@click.option(
|
@click.option(
|
||||||
'-g', '--tag', 'user_tags',
|
'-g', '--tag', 'user_tags',
|
||||||
default=[], multiple=True,
|
default=[], multiple=True,
|
||||||
help='User tag(s) for the VM.'
|
help='User tag for the VM; can be specified multiple times, once per tag.'
|
||||||
)
|
)
|
||||||
@click.option(
|
@click.option(
|
||||||
'-G', '--protected-tag', 'protected_tags',
|
'-G', '--protected-tag', 'protected_tags',
|
||||||
default=[], multiple=True,
|
default=[], multiple=True,
|
||||||
help='Protected user tag(s) for the VM.'
|
help='Protected user tag for the VM; can be specified multiple times, once per tag.'
|
||||||
)
|
)
|
||||||
@click.argument(
|
@click.argument(
|
||||||
'vmconfig', type=click.File()
|
'vmconfig', type=click.File()
|
||||||
|
|
Loading…
Reference in New Issue