Move guest addition check to later, after boot [GH-1179]

This commit is contained in:
Mitchell Hashimoto 2013-03-21 13:59:13 -07:00
parent fcd93bb133
commit df23c2a8fa
2 changed files with 3 additions and 1 deletions

View File

@ -8,6 +8,8 @@ IMPROVEMENTS:
- Ability to specify a plugin version, plugin sources, and
pre-release versions using `--plugin-version`, `--plugin-source`,
and `--plugin-prerelease`. [GH-1461]
- Move VirtualBox guest addition checks to after the machine
boots. [GH-1179]
BUG FIXES:

View File

@ -71,6 +71,7 @@ module VagrantPlugins
b.use SaneDefaults
b.use Customize
b.use Boot
b.use CheckGuestAdditions
end
end
@ -296,7 +297,6 @@ module VagrantPlugins
b2.use CheckAccessible
b2.use HandleBoxUrl
b2.use Import
b2.use CheckGuestAdditions
b2.use MatchMACAddress
end
end