From f13dd6a179a823350839debdf584410d304e2d56 Mon Sep 17 00:00:00 2001 From: Jordan Tardif Date: Wed, 18 Dec 2013 05:07:54 -0500 Subject: [PATCH] Fixing up quotes around host-model --- lib/vagrant-libvirt/config.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant-libvirt/config.rb b/lib/vagrant-libvirt/config.rb index 4930cbc..4e5f2d7 100644 --- a/lib/vagrant-libvirt/config.rb +++ b/lib/vagrant-libvirt/config.rb @@ -66,7 +66,7 @@ module VagrantPlugins # Domain specific settings. @memory = 512 if @memory == UNSET_VALUE @cpus = 1 if @cpus == UNSET_VALUE - @cpu_mode = host-model if @cpu_mode == UNSET_VALUE + @cpu_mode = 'host-model' if @cpu_mode == UNSET_VALUE @nested = false if @nested == UNSET_VALUE @volume_cache = 'default' if @volume_cache == UNSET_VALUE end