From f0959398000952050b0945f535de8c7731d290ba Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 28 Jan 2012 21:50:57 -0800 Subject: [PATCH] Update changelog for GH-690 --- CHANGELOG.md | 1 + lib/vagrant/driver/virtualbox_4_0.rb | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d6646c16..5b515ee01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ - Fix crashing case when all network options are `:auto_config false`. [GH-689] + - Type of network adapter can be specified with `:nic_type`. [GH-690] ## 0.9.4 (January 28, 2012) diff --git a/lib/vagrant/driver/virtualbox_4_0.rb b/lib/vagrant/driver/virtualbox_4_0.rb index b942ee35c..b0f0d91cd 100644 --- a/lib/vagrant/driver/virtualbox_4_0.rb +++ b/lib/vagrant/driver/virtualbox_4_0.rb @@ -116,7 +116,6 @@ module Vagrant if adapter[:nic_type] args.concat(["--nictype#{adapter[:adapter]}", adapter[:nic_type].to_s]) end - end execute("modifyvm", @uuid, *args)