Merge pull request #63 from ealden/use-precise64-boxes-in-tests
Use precise64 as box for all fixtures
This commit is contained in:
commit
1862eeca61
4 changed files with 8 additions and 4 deletions
|
@ -4,6 +4,7 @@ Vagrant.configure("2") do |config|
|
||||||
config.cache.auto_detect = true
|
config.cache.auto_detect = true
|
||||||
config.cache.scope = :machine
|
config.cache.scope = :machine
|
||||||
|
|
||||||
config.vm.box = 'raring64'
|
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
|
||||||
|
|
|
@ -2,6 +2,7 @@ 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.cache.auto_detect = true
|
config.cache.auto_detect = true
|
||||||
config.vm.box = 'quantal64'
|
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
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
Vagrant.require_plugin 'vagrant-cachier'
|
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 = 'quantal64'
|
config.vm.box = 'precise64'
|
||||||
|
config.vm.box_url = 'http://files.vagrantup.com/precise64.box'
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
Vagrant.require_plugin 'vagrant-cachier'
|
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 = 'quantal64'
|
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