Vagrant should be able to download precise64 if we don't have it

This commit is contained in:
Ealden Esto E. Escañan 2013-12-05 22:50:17 +08:00
parent e960cdb265
commit 5e5070dc14
4 changed files with 4 additions and 0 deletions

View File

@ -5,5 +5,6 @@ Vagrant.configure("2") do |config|
config.cache.scope = :machine
config.vm.box = 'precise64'
config.vm.box_url = 'http://files.vagrantup.com/precise64.box'
config.vm.provision :shell, inline: 'apt-get update && apt-get install -y git'
end

View File

@ -3,5 +3,6 @@ Vagrant.require_plugin 'vagrant-lxc'
Vagrant.configure("2") do |config|
config.cache.auto_detect = true
config.vm.box = 'precise64'
config.vm.box_url = 'http://files.vagrantup.com/precise64.box'
config.vm.provision :shell, inline: 'echo Hello!'
end

View File

@ -2,4 +2,5 @@ Vagrant.require_plugin 'vagrant-cachier'
Vagrant.require_plugin 'vagrant-lxc'
Vagrant.configure("2") do |config|
config.vm.box = 'precise64'
config.vm.box_url = 'http://files.vagrantup.com/precise64.box'
end

View File

@ -2,5 +2,6 @@ Vagrant.require_plugin 'vagrant-cachier'
Vagrant.require_plugin 'vagrant-lxc'
Vagrant.configure("2") do |config|
config.vm.box = 'precise64'
config.vm.box_url = 'http://files.vagrantup.com/precise64.box'
config.vm.provision :shell, inline: 'echo Hello!'
end