vboxmanage-{import, startvm}: remove = from options (#18951)

Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
This commit is contained in:
Shelly David
2025-10-22 11:28:08 -04:00
committed by GitHub
parent 216b162c7f
commit 4950f37864
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -25,12 +25,12 @@
- Set the guest OS type (one of `VBoxManage list ostypes`) for the imported VM:
`VBoxManage import {{path/to/file.ovf}} --ostype={{ostype}}`
`VBoxManage import {{path/to/file.ovf}} --ostype {{ostype}}`
- Set the memory (in megabytes) for the imported VM:
`VBoxManage import {{path/to/file.ovf}} --memory={{1}}`
`VBoxManage import {{path/to/file.ovf}} --memory {{1}}`
- Set the number of CPUs for the imported VM:
`VBoxManage import {{path/to/file.ovf}} --cpus={{1}}`
`VBoxManage import {{path/to/file.ovf}} --cpus {{1}}`
+1 -1
View File
@@ -21,4 +21,4 @@
- Start a virtual machine with an environment variable pair name value:
`VBoxManage startvm {{vm_name|uuid}} --put-env={{name}}={{value}}`
`VBoxManage startvm {{vm_name|uuid}} {{[-E|--putenv]}} {{name}}={{value}}`