From f9b3e8937334fb95cc1109fcaaec8455d38d57f4 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 20 Dec 2011 16:27:08 -0800 Subject: [PATCH] Enable provisioning by default [GH-601] --- lib/vagrant/command/up.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/command/up.rb b/lib/vagrant/command/up.rb index 4b33933e6..96102b81f 100644 --- a/lib/vagrant/command/up.rb +++ b/lib/vagrant/command/up.rb @@ -4,7 +4,7 @@ module Vagrant module Command class Up < Base def execute - options = {} + options = { :provision => true } opts = OptionParser.new do |opts| opts.banner = "Usage: vagrant up [vm-name] [--[no-]provision] [-h]"