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.cache.scope = :machine
|
||||||
|
|
||||||
config.vm.box = 'precise64'
|
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'
|
config.vm.provision :shell, inline: 'apt-get update && apt-get install -y git'
|
||||||
end
|
end
|
||||||
|
|
|
@ -3,5 +3,6 @@ Vagrant.require_plugin 'vagrant-lxc'
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.cache.auto_detect = true
|
config.cache.auto_detect = true
|
||||||
config.vm.box = 'precise64'
|
config.vm.box = 'precise64'
|
||||||
|
config.vm.box_url = 'http://files.vagrantup.com/precise64.box'
|
||||||
config.vm.provision :shell, inline: 'echo Hello!'
|
config.vm.provision :shell, inline: 'echo Hello!'
|
||||||
end
|
end
|
||||||
|
|
|
@ -2,4 +2,5 @@ Vagrant.require_plugin 'vagrant-cachier'
|
||||||
Vagrant.require_plugin 'vagrant-lxc'
|
Vagrant.require_plugin 'vagrant-lxc'
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.vm.box = 'precise64'
|
config.vm.box = 'precise64'
|
||||||
|
config.vm.box_url = 'http://files.vagrantup.com/precise64.box'
|
||||||
end
|
end
|
||||||
|
|
|
@ -2,5 +2,6 @@ Vagrant.require_plugin 'vagrant-cachier'
|
||||||
Vagrant.require_plugin 'vagrant-lxc'
|
Vagrant.require_plugin 'vagrant-lxc'
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.vm.box = 'precise64'
|
config.vm.box = 'precise64'
|
||||||
|
config.vm.box_url = 'http://files.vagrantup.com/precise64.box'
|
||||||
config.vm.provision :shell, inline: 'echo Hello!'
|
config.vm.provision :shell, inline: 'echo Hello!'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue