From b20c5764bc7a8db6e0bcc5bf9f092a9c8769daf9 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Sun, 28 Jul 2019 18:11:04 -0400 Subject: [PATCH] man: Document the --keywrap option --- man/virt-install.pod | 7 +++++++ man/virt-xml.pod | 2 ++ virtinst/cli.py | 3 ++- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/man/virt-install.pod b/man/virt-install.pod index 081f28c31..cde7b53b1 100644 --- a/man/virt-install.pod +++ b/man/virt-install.pod @@ -310,6 +310,13 @@ LABEL without TYPE implies static configuration. Use --security=? to see a list of all available sub options. Complete details at L +=item B<--keywrap> OPTIONS + +Specify domain XML, used for S390 cryptographic key management operations. + +Use --keywrap=? to see a list of all available sub options. Complete details at L + + =item B<--iothreads> OPTIONS Specify domain and/or XML. For example, to configure 4, do: diff --git a/man/virt-xml.pod b/man/virt-xml.pod index b884d7222..0aaa63d48 100644 --- a/man/virt-xml.pod +++ b/man/virt-xml.pod @@ -216,6 +216,8 @@ variants. =item B<--seclabel> +=item B<--keywrap> + =item B<--cputune> =item B<--numatune> diff --git a/virtinst/cli.py b/virtinst/cli.py index 0ed59d05f..302e15316 100644 --- a/virtinst/cli.py +++ b/virtinst/cli.py @@ -777,7 +777,8 @@ def add_guest_xml_options(geng): ParserKeyWrap.register() geng.add_argument("--keywrap", action="append", - help=_("Set guest to perform the S390 cryptographic key management operations.")) + help=_("Set guest to perform the S390 cryptographic " + "key management operations.")) ParserCputune.register() geng.add_argument("--cputune", action="append",