1
0
mirror of https://github.com/gryf/boxpy.git synced 2025-12-18 13:00:17 +01:00

Rephrase help for VM type option.

This commit is contained in:
2021-09-02 09:27:29 +02:00
parent c19f4f1a61
commit db8a42518e

4
box.py
View File

@@ -1340,7 +1340,7 @@ def main():
create.add_argument('-s', '--disk-size', help="disk size to be expanded "
"to. By default to 10GB")
create.add_argument('-t', '--type', default='headless',
help="run type, headless by default.",
help="VM run type, headless by default.",
choices=['gui', 'headless', 'sdl', 'separate'])
create.add_argument('-u', '--cpus', type=int, help="amount of CPUs to be "
"configured. Default 1.")
@@ -1383,7 +1383,7 @@ def main():
rebuild.add_argument('-s', '--disk-size',
help='disk size to be expanded to')
rebuild.add_argument('-t', '--type', default='headless',
help="run type, headless by default.",
help="VM run type, headless by default.",
choices=['gui', 'headless', 'sdl', 'separate'])
rebuild.add_argument('-u', '--cpus', type=int,
help='amount of CPUs to be configured')