Move guest addition check to later, after boot [GH-1179]
This commit is contained in:
parent
fcd93bb133
commit
df23c2a8fa
|
@ -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:
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue