Skip to content

Commit

Permalink
vbguest plugin configuration wrapped
Browse files Browse the repository at this point in the history
  • Loading branch information
paulovn committed Aug 16, 2019
1 parent 2d44df5 commit fae182f
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,11 @@ Vagrant.configure(2) do |config|
# default one (perhaps because the box will be later packaged)
#config.ssh.insert_key = false

# set auto_update to false, if you do NOT want to check the correct
# additions version when booting this machine
config.vbguest.auto_update = false
# vagrant-vbguest plugin: set auto_update to false, if you do NOT want to
# check the correct additions version when booting this machine
if Vagrant.has_plugin?("vagrant-vbguest") == true
config.vbguest.auto_update = false
end

# Use our custom username, instead of the default "vagrant"
if vagrant_command == "ssh"
Expand Down Expand Up @@ -151,9 +153,6 @@ Vagrant.configure(2) do |config|
vb.customize ["modifyvm", :id, "--draganddrop", "bidirectional"]
end

# vagrant-vbguest plugin: set auto_update to false, if you do NOT want to
# check the correct additions version when booting this machine
#vgrml.vbguest.auto_update = false

# **********************************************************************
# Networking
Expand Down

0 comments on commit fae182f

Please sign in to comment.