33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
|
|
From a254ece0f0497d062a0e4c94dc45619649ea4922 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Cole Robinson <crobinso@redhat.com>
|
||
|
|
Date: Sun, 21 Aug 2022 16:08:37 -0400
|
||
|
|
Subject: [PATCH] virt-install: --help required options are wrong
|
||
|
|
|
||
|
|
Nowadays it could be as simple as `virt-install --install fedora36`.
|
||
|
|
|
||
|
|
Trying to represent the interdepencies here is not worth it, but
|
||
|
|
let's keep a simple string around to avoid the default parser
|
||
|
|
usage string, which is huge
|
||
|
|
|
||
|
|
Signed-off-by: Cole Robinson <crobinso@redhat.com>
|
||
|
|
---
|
||
|
|
virtinst/virtinstall.py | 2 +-
|
||
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/virtinst/virtinstall.py b/virtinst/virtinstall.py
|
||
|
|
index baebe5b5..37eef1fc 100644
|
||
|
|
--- a/virtinst/virtinstall.py
|
||
|
|
+++ b/virtinst/virtinstall.py
|
||
|
|
@@ -1019,7 +1019,7 @@ def xml_to_print(guest, installer, xmlonly, dry):
|
||
|
|
|
||
|
|
def parse_args():
|
||
|
|
parser = cli.setupParser(
|
||
|
|
- "%(prog)s --name NAME --memory MB STORAGE INSTALL [options]",
|
||
|
|
+ "%(prog)s OPTIONS",
|
||
|
|
_("Create a new virtual machine from specified install media."),
|
||
|
|
introspection_epilog=True)
|
||
|
|
cli.add_connect_option(parser)
|
||
|
|
--
|
||
|
|
2.37.2.windows.2
|
||
|
|
|