From df23c2a8faeb8fbccb76432498a3e20dd57b6b14 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 21 Mar 2013 13:59:13 -0700 Subject: [PATCH] Move guest addition check to later, after boot [GH-1179] --- CHANGELOG.md | 2 ++ plugins/providers/virtualbox/action.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecf334164..f48081bfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: diff --git a/plugins/providers/virtualbox/action.rb b/plugins/providers/virtualbox/action.rb index 0641c9552..f4e14889d 100644 --- a/plugins/providers/virtualbox/action.rb +++ b/plugins/providers/virtualbox/action.rb @@ -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