Skip to content

Commit 08d34f0

Browse files
authored
Merge pull request #15 from Zuehlke/feature/fix-vm-naming
Fix naming of VirtualBox VMs
2 parents b407224 + 3af6278 commit 08d34f0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ Vagrant.configure("2") do |config|
1010

1111
# virtualbox specific customizations
1212
config.vm.provider "virtualbox" do |vbox, override|
13-
vbox.name = "Linux Developer VM"
1413
vbox.cpus = 4
1514
vbox.memory = 4096
15+
vbox.customize ["modifyvm", :id, "--name", "Linux Developer VM"]
1616
vbox.customize ["modifyvm", :id, "--usb", "on"]
1717
vbox.customize ["modifyvm", :id, "--accelerate3d", "off"]
1818
vbox.customize ["modifyvm", :id, "--graphicscontroller", "vmsvga"]

0 commit comments

Comments
 (0)