Merge pull request #3585 from aspiers/backport-3277-old-virtualboxen

backport GH-3277 fix for missing interpolation to older drivers
This commit is contained in:
Mitchell Hashimoto 2014-04-30 09:22:59 -07:00
commit 224ee8003d
3 changed files with 9 additions and 3 deletions

View File

@ -470,7 +470,9 @@ module VagrantPlugins
end
# If we reached this point then it didn't work out.
raise Vagrant::Errors::VBoxManageError, :command => command.inspect
raise Vagrant::Errors::VBoxManageError,
command: command.inspect,
stderr: r.stderr
end
def suspend

View File

@ -480,7 +480,9 @@ module VagrantPlugins
end
# If we reached this point then it didn't work out.
raise Vagrant::Errors::VBoxManageError, :command => command.inspect
raise Vagrant::Errors::VBoxManageError,
command: command.inspect,
stderr: r.stderr
end
def suspend

View File

@ -504,7 +504,9 @@ module VagrantPlugins
end
# If we reached this point then it didn't work out.
raise Vagrant::Errors::VBoxManageError, :command => command.inspect
raise Vagrant::Errors::VBoxManageError,
command: command.inspect,
stderr: r.stderr
end
def suspend