- saucy 13.10 (current stable - supported until July 2014) - trusty 14.04 (development version to be supported until April 2019)
Signed-off-by: Daniel Manrique <[email protected]> --- Vagrantfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 7fdcad2..d20cb54 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -23,6 +23,18 @@ Vagrant::Config.run do |config| raring_config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/raring/current/raring-server-cloudimg-i386-vagrant-disk1.box" end + # Define a Ubuntu Server image (cloud) for the 13.10 release (saucy) + config.vm.define :saucy do |saucy_config| + saucy_config.vm.box = "saucy-cloud-i386" + saucy_config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/saucy/current/saucy-server-cloudimg-i386-vagrant-disk1.box" + end + + # Define a Ubuntu Server image (cloud) for the 14.04 release (trusty) + config.vm.define :trusty do |trusty_config| + trusty_config.vm.box = "trusty-cloud-i386" + trusty_config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-i386-vagrant-disk1.box" + end + # For debugging and later future GUI testing if ENV.key? "VAGRANT_GUI" config.vm.boot_mode = :gui -- 1.8.1.2 -- Mailing list: https://launchpad.net/~checkbox-dev Post to : [email protected] Unsubscribe : https://launchpad.net/~checkbox-dev More help : https://help.launchpad.net/ListHelp

