From 856a847bc81be97504014c0fab5510626fd54bd8 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Sun, 4 May 2014 20:37:09 -0300 Subject: [PATCH] config: Switch default backingstore to "best" [GH-277] --- lib/vagrant-lxc/config.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/vagrant-lxc/config.rb b/lib/vagrant-lxc/config.rb index 11933b4..e727f9f 100644 --- a/lib/vagrant-lxc/config.rb +++ b/lib/vagrant-lxc/config.rb @@ -10,6 +10,8 @@ module Vagrant attr_accessor :backingstore # Optional arguments for the backing store, such as --fssize, --fstype, ... + # + # @return [Array] attr_accessor :backingstore_options # A string to explicitly set the container name. To use the vagrant @@ -47,7 +49,7 @@ module Vagrant def finalize! @sudo_wrapper = nil if @sudo_wrapper == UNSET_VALUE @container_name = nil if @container_name == UNSET_VALUE - @backingstore = "none" if @backingstore == UNSET_VALUE + @backingstore = "best" if @backingstore == UNSET_VALUE @existing_container_name = nil if @existing_container_name == UNSET_VALUE end end