virt-install: Fix description for --os-variant

Since we're messing with it either way, might as well use
modern OS names as examples.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
This commit is contained in:
Andrea Bolognani 2018-11-09 16:36:36 +01:00 committed by Pavel Hrdina
parent f53e5b024d
commit a550a95727
2 changed files with 3 additions and 3 deletions

View File

@ -475,7 +475,7 @@ file:
=item B<--os-variant> OS_VARIANT
Optimize the guest configuration for a specific operating system (ex.
'fedora18', 'rhel7', 'winxp'). While not required, specifying this
'fedora29', 'rhel7', 'win10'). While not required, specifying this
options is HIGHLY RECOMMENDED, as it can greatly increase performance
by specifying virtio among other guest tweaks.

View File

@ -786,8 +786,8 @@ def parse_args():
insg.add_argument("--os-type", dest="distro_type", help=argparse.SUPPRESS)
insg.add_argument("--os-variant", dest="distro_variant",
help=_("The OS variant being installed guests, "
"e.g. 'fedora18', 'rhel6', 'winxp', etc."))
help=_("The OS variant being installed in the guest, "
"e.g. 'fedora29', 'rhel7', 'win10 etc."))
cli.add_boot_options(insg)
insg.add_argument("--init", help=argparse.SUPPRESS)