Update CHANGELOG for RedHat host only networking
This commit is contained in:
parent
eda6b81093
commit
b302053f6e
|
@ -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)
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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|
|
||||
|
|
|
@ -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|
|
||||
|
|
Loading…
Reference in New Issue