From ac1cab0170c65da116ba1a6ed777c71e7d3371e2 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Tue, 4 Sep 2018 13:36:04 +0700 Subject: [PATCH] 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 --- Vagrant/Vagrantfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Vagrant/Vagrantfile b/Vagrant/Vagrantfile index 5f50010..5d3ba5d 100644 --- a/Vagrant/Vagrantfile +++ b/Vagrant/Vagrantfile @@ -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"]