Remove Ubuntu 13.04 from test matrix.

We're trying to focus on Ubuntu LTS releases and not chase the 6 month releases.

Change-Id: I645cf96f51895d430a22ecf0715e0eefd688bb7d
This commit is contained in:
Matt Ray 2013-11-28 09:13:32 -06:00
parent 225f733e33
commit c2a6122c51
2 changed files with 1 additions and 16 deletions

View File

@ -2,7 +2,7 @@
## Prerequisites ##
The allinone-compute role may be tested with Vagrant, currently with Ubuntu 12.04 and 13.04. You need the following prerequisites:
The allinone-compute role may be tested with Vagrant, currently with Ubuntu 12.04. You need the following prerequisites:
1. You must have Vagrant 1.2.1 or later installed.
2. You must have a "sane" Ruby 1.9.3 environment.
@ -23,10 +23,6 @@ To test with Ubuntu 12.04, run:
$ vagrant up ubuntu1204
To test with Ubuntu 13.04, run:
$ vagrant up ubuntu1304
## Further testing ##
Now you have an openstack, you'll probably want to be able to actually launch instances.

11
Vagrantfile vendored
View File

@ -43,17 +43,6 @@ Vagrant.configure("2") do |config|
end
end
# Ubuntu 13.04 Config
config.vm.define :ubuntu1304 do |ubuntu1304|
ubuntu1304.vm.hostname = "ubuntu1304"
ubuntu1304.vm.box = "opscode-ubuntu-13.04"
ubuntu1304.vm.box_url = "https://opscode-vm-bento.s3.amazonaws.com/vagrant/opscode_ubuntu-13.04_provisionerless.box"
ubuntu1304.vm.provision :chef_client do |chef|
chef.environment = chef_environment
chef.run_list = chef_run_list.unshift("recipe[apt::cacher-client]")
end
end
# Centos 6.4 Config
config.vm.define :centos64 do |centos64|
centos64.vm.hostname = "centos64"