Use precise64 for all fixtures
Should be easier to run the acceptance tests as we now only need to get 1 box instead of 2 before.
This commit is contained in:
parent
56b86a0deb
commit
e960cdb265
4 changed files with 4 additions and 4 deletions
|
@ -4,6 +4,6 @@ Vagrant.configure("2") do |config|
|
|||
config.cache.auto_detect = true
|
||||
config.cache.scope = :machine
|
||||
|
||||
config.vm.box = 'raring64'
|
||||
config.vm.box = 'precise64'
|
||||
config.vm.provision :shell, inline: 'apt-get update && apt-get install -y git'
|
||||
end
|
||||
|
|
|
@ -2,6 +2,6 @@ Vagrant.require_plugin 'vagrant-cachier'
|
|||
Vagrant.require_plugin 'vagrant-lxc'
|
||||
Vagrant.configure("2") do |config|
|
||||
config.cache.auto_detect = true
|
||||
config.vm.box = 'quantal64'
|
||||
config.vm.box = 'precise64'
|
||||
config.vm.provision :shell, inline: 'echo Hello!'
|
||||
end
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Vagrant.require_plugin 'vagrant-cachier'
|
||||
Vagrant.require_plugin 'vagrant-lxc'
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = 'quantal64'
|
||||
config.vm.box = 'precise64'
|
||||
end
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Vagrant.require_plugin 'vagrant-cachier'
|
||||
Vagrant.require_plugin 'vagrant-lxc'
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = 'quantal64'
|
||||
config.vm.box = 'precise64'
|
||||
config.vm.provision :shell, inline: 'echo Hello!'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue