Skip to content

Instantly share code, notes, and snippets.

@jjwatt
Forked from erochest/Vagrantfile
Last active August 29, 2015 13:56
Show Gist options
  • Save jjwatt/8974402 to your computer and use it in GitHub Desktop.
Save jjwatt/8974402 to your computer and use it in GitHub Desktop.
# vi: set ft=ruby :
# -*- mode: ruby -*-
VAGRANTFILE_API_VERSION = "2"
BASE_URL="http://cloud-images.ubuntu.com/vagrant"
PRECISE32_URL="#{BASE_URL}/precise/current/precise-server-cloudimg-i386-vagrant-disk1.box"
PRECISE64_URL="#{BASE_URL}/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box"
QUANTAL32_URL="#{BASE_URL}/quantal/current/quantal-server-cloudimg-i386-vagrant-disk1.box"
QUANTAL64_URL="#{BASE_URL}/quantal/current/quantal-server-cloudimg-amd64-vagrant-disk1.box"
RARING32_URL="#{BASE_URL}/raring/current/raring-server-cloudimg-i386-vagrant-disk1.box"
RARING64_URL="#{BASE_URL}/raring/current/raring-server-cloudimg-amd64-vagrant-disk1.box"
SAUCY32_URL="#{BASE_URL}/saucy/current/saucy-server-cloudimg-i386-vagrant-disk1.box"
SAUCY64_URL="#{BASE_URL}/saucy/current/saucy-server-cloudimg-amd64-vagrant-disk1.box"
config.vm.box = "precise64"
config.vm.box_url = PRECISE64_URL
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "saucy64"
config.vm.box_url = SAUCY64_URL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment