Skip to content

Commit

Permalink
Fix name of VirtualBox provider in Vagrantfile
Browse files Browse the repository at this point in the history
This arose from a backport where in later branches we have changed the
name of the local variable used to refer to the VirtualBox
provider. This commit addresses this switching to the name we use in
future branches in case anything else is backported.
  • Loading branch information
jasontedor committed Jun 11, 2018
1 parent c53c440 commit ca78ca3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,10 @@ def provision(config,
raise ArgumentError.new('update_command is required') if update_command == 'required'
raise ArgumentError.new('update_tracking_file is required') if update_tracking_file == 'required'
raise ArgumentError.new('install_command is required') if install_command == 'required'
config.vm.provider "virtualbox" do |v|
config.vm.provider "virtualbox" do |vbox|
# Give the box more memory and cpu because our tests are beasts!
v.memory = Integer(ENV['VAGRANT_MEMORY'] || 8192)
v.cpus = Integer(ENV['VAGRANT_CPUS'] || 4)
vbox.memory = Integer(ENV['VAGRANT_MEMORY'] || 8192)
vbox.cpus = Integer(ENV['VAGRANT_CPUS'] || 4)

# see https://github.com/hashicorp/vagrant/issues/9524
vbox.customize ["modifyvm", :id, "--audio", "none"]
Expand Down

0 comments on commit ca78ca3

Please sign in to comment.