You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Vagrant.configure("2") do |c|
c.berkshelf.enabled = false if Vagrant.has_plugin?("vagrant-berkshelf")
c.vm.box = "chef/centos-6.6"
c.vm.box_check_update = "false"
c.vm.hostname = "localhost"
c.vm.synced_folder ".", "/vagrant", disabled: true
end
Actual:
Vagrant.configure("2") do |c|
c.berkshelf.enabled = false if Vagrant.has_plugin?("vagrant-berkshelf")
c.vm.box = "chef/centos-6.6"
c.vm.hostname = "localhost"
c.vm.synced_folder ".", "/vagrant", disabled: true
end
Per the Automatic Update Checking section of the Vagrant documentation, box update checking is enabled by default if "box_check_update" is not explicitly disabled in the Vagrantfile.
The text was updated successfully, but these errors were encountered:
.kitchen.yml
Expect:
Actual:
Per the Automatic Update Checking section of the Vagrant documentation, box update checking is enabled by default if "box_check_update" is not explicitly disabled in the Vagrantfile.
The text was updated successfully, but these errors were encountered: