From c3652c9057d479d93d23a0136ff52bd169557df5 Mon Sep 17 00:00:00 2001 From: Felix Kaiser Date: Wed, 25 Nov 2015 00:50:24 +0100 Subject: [PATCH] Bugfix: Config.finalize!: set @pcis if UNSET_VALUE --- lib/vagrant-libvirt/config.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/vagrant-libvirt/config.rb b/lib/vagrant-libvirt/config.rb index 3f777b0..ae7de88 100644 --- a/lib/vagrant-libvirt/config.rb +++ b/lib/vagrant-libvirt/config.rb @@ -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