Update CHANGELOG for RedHat host only networking

This commit is contained in:
Mitchell Hashimoto 2011-01-10 18:15:55 -08:00
parent eda6b81093
commit b302053f6e
4 changed files with 4 additions and 3 deletions

View File

@ -18,6 +18,7 @@
- Ability to specify proxy settings for chef. [GH-169]
- Helpful error message shown if NFS mounting fails. [GH-135]
- Gentoo guests now support host only networks. [GH-240]
- RedHat (CentOS included) guests now support host only networks. [GH-260]
## 0.7.0.beta (December 24, 2010)

View File

@ -68,7 +68,7 @@ module Vagrant
# Prepares the system for host only networks. This is called
# once prior to any `enable_host_only_network` calls.
def prepare_host_only_network(net_options = nil)
def prepare_host_only_network(net_options=nil)
raise BaseError, :_key => :unsupported_host_only
end

View File

@ -1,7 +1,7 @@
module Vagrant
module Systems
class Debian < Linux
def prepare_host_only_network(net_options = nil)
def prepare_host_only_network(net_options=nil)
# Remove any previous host only network additions to the
# interface file.
vm.ssh.execute do |ssh|

View File

@ -1,7 +1,7 @@
module Vagrant
module Systems
class Gentoo < Linux
def prepare_host_only_network(net_options = nil)
def prepare_host_only_network(net_options=nil)
# Remove any previous host only network additions to the
# interface file.
vm.ssh.execute do |ssh|