Minor change in VAGRANTFILE for --vram

Value for --vram is assumed to be in mb already, so only value is required. [--vram <vramsize in MB>]
Followed the https://www.virtualbox.org/manual/ch08.html#vboxmanage-cmd-overview
This commit is contained in:
AnvaySingh 2022-05-07 10:58:02 +05:30 committed by GitHub
parent b5409f9242
commit 9fe0a02845
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,6 @@ Vagrant.configure("2") do |config|
config.vm.provider :virtualbox do |v|
v.memory = 8096
v.cpus = 4
v.customize ["modifyvm", :id, "--vram", "128mb"]
v.customize ["modifyvm", :id, "--vram", "128"]
end
end