From b72a55a3fbe51adc20f31536396129c762d62a2d Mon Sep 17 00:00:00 2001 From: Tony Date: Mon, 20 May 2019 10:09:45 -0400 Subject: [PATCH] Update virtualbox-iso.html.md.erb remove cpus/memory flags due to their property implementation, add vram for example --- website/source/docs/builders/virtualbox-iso.html.md.erb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/website/source/docs/builders/virtualbox-iso.html.md.erb b/website/source/docs/builders/virtualbox-iso.html.md.erb index 16f117963..5b43b5aab 100644 --- a/website/source/docs/builders/virtualbox-iso.html.md.erb +++ b/website/source/docs/builders/virtualbox-iso.html.md.erb @@ -402,14 +402,12 @@ interface to VirtualBox where you can completely control VirtualBox. It can be used to do things such as set RAM, CPUs, etc. Extra VBoxManage commands are defined in the template in the `vboxmanage` -section. An example is shown below that sets the memory and number of CPUs -within the virtual machine: +section. An example is shown below that sets the VRAM within the virtual machine: ``` json { "vboxmanage": [ - ["modifyvm", "{{.Name}}", "--memory", "1024"], - ["modifyvm", "{{.Name}}", "--cpus", "2"] + ["modifyvm", "{{.Name}}", "--vram", "64"] ] } ```