Updated Vagrantfile to support Vagrant 1.1.2 - you will probably need to download

Vagrant again! http://downloads.vagrantup.com/
This commit is contained in:
Robin Ward
2013-03-19 13:39:16 -04:00
parent 73b2d6f076
commit ddff23cc27
13 changed files with 13654 additions and 184 deletions

5
Vagrantfile vendored
View File

@@ -3,8 +3,8 @@
# See https://github.com/discourse/discourse/blob/master/docs/VAGRANT.md
#
Vagrant.configure("2") do |config|
config.vm.box = 'discourse-pre'
config.vm.box_url = 'http://www.discourse.org/vms/discourse-pre.box'
config.vm.box = 'discourse-0.8.4'
config.vm.box_url = 'http://www.discourse.org/vms/discourse-0.8.4.box'
# Make this VM reachable on the host network as well, so that other
# VM's running other browsers can access our dev server.
@@ -49,7 +49,6 @@ Vagrant.configure("2") do |config|
chef.cookbooks_path = chef_cookbooks_path
chef.add_recipe "recipe[apt]"
chef.add_recipe "recipe[build-essential]"
chef.add_recipe "recipe[phantomjs]"
chef.add_recipe "recipe[vim]"
end
end