Vagrant should be able to download precise64 if we don't have it
This commit is contained in:
parent
e960cdb265
commit
5e5070dc14
4 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue