update CHANGELOG

This commit is contained in:
Mitchell Hashimoto 2014-04-11 16:34:53 -07:00
parent cc343d1a7d
commit 96971194bc
2 changed files with 13 additions and 2 deletions

View File

@ -23,6 +23,8 @@ FEATURES:
IMPROVEMENTS:
- 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:

View File

@ -1,10 +1,19 @@
module VagrantPlugins
module GuestFreeBSD
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
def initialize
@device = "em"
@device = UNSET_VALUE
end
def finalize!
@device = "em" if @device == UNSET_VALUE
end
end
end