update CHANGELOG
This commit is contained in:
parent
cc343d1a7d
commit
96971194bc
|
@ -23,6 +23,8 @@ FEATURES:
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
|
|
||||||
- commands/ssh-config: Works without a target in multi-machine envs [GH-2844]
|
- commands/ssh-config: Works without a target in multi-machine envs [GH-2844]
|
||||||
|
- guests/freebsd: Added `config.freebsd.device` setting to set the network
|
||||||
|
device prefix, defaults to "em". [GH-2956]
|
||||||
|
|
||||||
PLUGIN AUTHOR CHANGES:
|
PLUGIN AUTHOR CHANGES:
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,19 @@
|
||||||
module VagrantPlugins
|
module VagrantPlugins
|
||||||
module GuestFreeBSD
|
module GuestFreeBSD
|
||||||
class Config < Vagrant.plugin("2", :config)
|
class Config < Vagrant.plugin("2", :config)
|
||||||
|
# The device prefix for network devices created by Vagrant.
|
||||||
|
# This defaults to "em" but can be set for example to "vtnet"
|
||||||
|
# for virtio devices and so on.
|
||||||
|
#
|
||||||
|
# @return [String]
|
||||||
attr_accessor :device
|
attr_accessor :device
|
||||||
|
|
||||||
def initialize
|
def initialize
|
||||||
@device = "em"
|
@device = UNSET_VALUE
|
||||||
|
end
|
||||||
|
|
||||||
|
def finalize!
|
||||||
|
@device = "em" if @device == UNSET_VALUE
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue