Commit 653292a15bb798ba84747ea7ca152df16c6f241a
1 parent
1c8339ab
Exists in
master
and in
39 other branches
Changed VM base names
Showing
1 changed file
with
7 additions
and
10 deletions
Show diff stats
Vagrantfile
| @@ -2,11 +2,11 @@ | @@ -2,11 +2,11 @@ | ||
| 2 | # vi: set ft=ruby : | 2 | # vi: set ft=ruby : |
| 3 | 3 | ||
| 4 | # CHOOSE THE DISTRO FOR COLAB VM (set the distro variable): | 4 | # CHOOSE THE DISTRO FOR COLAB VM (set the distro variable): |
| 5 | -# - ubuntu_precise | ||
| 6 | -# - ubuntu_trusty | ||
| 7 | -# - centos_65 | 5 | +# - precise64 |
| 6 | +# - trusty64 | ||
| 7 | +# - centos6.5 | ||
| 8 | 8 | ||
| 9 | -distro = "centos_65" | 9 | +distro = "precise64" |
| 10 | 10 | ||
| 11 | # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | 11 | # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! |
| 12 | VAGRANTFILE_API_VERSION = "2" | 12 | VAGRANTFILE_API_VERSION = "2" |
| @@ -22,14 +22,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | @@ -22,14 +22,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | ||
| 22 | 22 | ||
| 23 | colab.vm.box = distro | 23 | colab.vm.box = distro |
| 24 | 24 | ||
| 25 | - if distro == "ubuntu_precise" | ||
| 26 | - puts "Installing Ubuntu Precise VM!" | 25 | + if distro == "precise64" |
| 27 | colab.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box" | 26 | colab.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box" |
| 28 | - elsif distro == "ubuntu_trusty" | ||
| 29 | - puts "Installing Ubuntu Trusty VM!" | 27 | + elsif distro == "trusty64" |
| 30 | colab.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box" | 28 | colab.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box" |
| 31 | - elsif distro == "centos_65" | ||
| 32 | - puts "Installing CentOS 6.5 VM!" | 29 | + elsif distro == "centos6.5" |
| 33 | colab.vm.box_url = "https://github.com/2creatives/vagrant-centos/releases/download/v6.5.3/centos65-x86_64-20140116.box" | 30 | colab.vm.box_url = "https://github.com/2creatives/vagrant-centos/releases/download/v6.5.3/centos65-x86_64-20140116.box" |
| 34 | end | 31 | end |
| 35 | 32 |