Merge pull request #514 from fxkr/fix-set-pcis-if-unset

Bugfix: Config.finalize!: set @pcis if UNSET_VALUE
This commit is contained in:
Dmitry Vasilets 2015-11-25 08:43:27 +01:00
commit 1c372ddaf9

View File

@ -389,6 +389,9 @@ module VagrantPlugins
# Inputs
@inputs = [{:type => "mouse", :bus => "ps2"}] if @inputs == UNSET_VALUE
# PCI device passthrough
@pcis = [] if @pcis == UNSET_VALUE
# Suspend mode
@suspend_mode = "pause" if @suspend_mode == UNSET_VALUE