mirror of https://github.com/zulip/zulip.git
vagrant: Remove uartmode1 woarkound.
We determined that this hack is unnecessary with the official hasicorp boxes (and it caused problems for some users). Discussion in this thread: https://chat.zulip.org/#narrow/stream/21-provision-help/topic/Vagrant.20up.20not.20starting/near/881773
This commit is contained in:
parent
e0dc0062eb
commit
1a6799f15e
|
@ -115,12 +115,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||||
|
|
||||||
config.vm.provider "virtualbox" do |vb, override|
|
config.vm.provider "virtualbox" do |vb, override|
|
||||||
override.vm.box = "hashicorp/bionic64"
|
override.vm.box = "hashicorp/bionic64"
|
||||||
# An unnecessary log file gets generated when running vagrant up for the
|
|
||||||
# first time with the Ubuntu Bionic box. This looks like it is being
|
|
||||||
# caused upstream by the base box containing a Vagrantfile with a similar
|
|
||||||
# line to the one below.
|
|
||||||
# see https://github.com/hashicorp/vagrant/issues/9425
|
|
||||||
vb.customize [ "modifyvm", :id, "--uartmode1", "disconnected" ]
|
|
||||||
# It's possible we can get away with just 1.5GB; more testing needed
|
# It's possible we can get away with just 1.5GB; more testing needed
|
||||||
vb.memory = vm_memory
|
vb.memory = vm_memory
|
||||||
vb.cpus = vm_num_cpus
|
vb.cpus = vm_num_cpus
|
||||||
|
|
Loading…
Reference in New Issue