AnwarYagoub / RHCSA-RHCE-Lab-Environment

Lab environment for RHCSA/RHCE Cert Guide book by Sander van Vugt (not official)
https://anwaryagoub.github.io/RHCSA-RHCE-Lab-Environment/
77 stars 50 forks source link

config.vbguest.auto_update = false #2

Closed AnwarYagoub closed 8 years ago

AnwarYagoub commented 8 years ago

@smartbit

config.vbguest.auto_update = false

the above line from Vagrantfile works on if you have installed vagrant-vbguest plug-in for vagrant, so without this plug-in installed it will give the following error

There are errors in the configuration of this machine. Please fix
the following errors and try again:

Vagrant:
* Unknown configuration section 'vbguest'.

if it is important we must add the command to install vagrant vbguest plug-in

$ vagrant plugin install vagrant-vbguest
smartbit commented 8 years ago

try

if defined? VagrantVbguest
      config.vbguest.auto_update = false 
end