I would like to disable VirtualBox Guest Additions. I do not use them for folder syncing, etc. and for the box I am working on (e.g., centos/7), they fail to build anyway. Is th
In your Vagrantfile, add the following param
Vagrant.configure("2") do |config| .... config.vbguest.auto_update = false .... end