Rename virtualbox VM names to predictable
Hi! I suggest you to add this to make virtualbox vm names more predictable. Now i suspect that virtualbox vm names are slightly random. cfg.vm.provider "virtualbox" do |vb, override| ... vb.name = "name.windomain.local" ... end
This commit is contained in:
4
Vagrant/Vagrantfile
vendored
4
Vagrant/Vagrantfile
vendored
@@ -20,6 +20,7 @@ Vagrant.configure("2") do |config|
|
||||
|
||||
cfg.vm.provider "virtualbox" do |vb, override|
|
||||
vb.gui = true
|
||||
vb.name = "logger.windomain.local"
|
||||
vb.customize ["modifyvm", :id, "--memory", 4096]
|
||||
vb.customize ["modifyvm", :id, "--cpus", 2]
|
||||
vb.customize ["modifyvm", :id, "--vram", "32"]
|
||||
@@ -80,6 +81,7 @@ Vagrant.configure("2") do |config|
|
||||
|
||||
cfg.vm.provider "virtualbox" do |vb, override|
|
||||
vb.gui = true
|
||||
vb.name = "dc.windomain.local"
|
||||
vb.customize ["modifyvm", :id, "--memory", 2560]
|
||||
vb.customize ["modifyvm", :id, "--cpus", 2]
|
||||
vb.customize ["modifyvm", :id, "--vram", "32"]
|
||||
@@ -134,6 +136,7 @@ Vagrant.configure("2") do |config|
|
||||
|
||||
cfg.vm.provider "virtualbox" do |vb, override|
|
||||
vb.gui = true
|
||||
vb.name = "wef.windomain.local"
|
||||
vb.customize ["modifyvm", :id, "--memory", 2048]
|
||||
vb.customize ["modifyvm", :id, "--cpus", 2]
|
||||
vb.customize ["modifyvm", :id, "--vram", "32"]
|
||||
@@ -188,6 +191,7 @@ Vagrant.configure("2") do |config|
|
||||
|
||||
cfg.vm.provider "virtualbox" do |vb, override|
|
||||
vb.gui = true
|
||||
vb.name = "win10.windomain.local"
|
||||
vb.customize ["modifyvm", :id, "--memory", 2048]
|
||||
vb.customize ["modifyvm", :id, "--cpus", 1]
|
||||
vb.customize ["modifyvm", :id, "--vram", "32"]
|
||||
|
||||
Reference in New Issue
Block a user