From e7296c3af116e140f757b051ebb8b03d4c7ae4ef Mon Sep 17 00:00:00 2001 From: Almog Kurtser Date: Fri, 6 Sep 2013 21:58:18 +0300 Subject: [PATCH] Use vm.box_url instead of comments --- Vagrantfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 7b6e7729..c811834d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,33 +2,33 @@ # vi: set ft=ruby : Vagrant::Config.run do |config| - # vagrant box add debian-wheezy-amd64 https://dl.dropboxusercontent.com/u/67225617/lxc-vagrant/lxc-wheezy64-puppet3-2013-07-27.box config.vm.define :debian do |debian| debian.vm.box = 'debian-wheezy-amd64' + debian.vm.box_url = 'https://dl.dropboxusercontent.com/u/67225617/lxc-vagrant/lxc-wheezy64-puppet3-2013-07-27.box' end - # vagrant box add ubuntu-12.04-amd64 http://cloud-images.ubuntu.com/precise/current/precise-server-cloudimg-vagrant-amd64-disk1.box config.vm.define :ubuntu do |ubuntu| + ubuntu.vm.box_url = 'http://cloud-images.ubuntu.com/precise/current/precise-server-cloudimg-vagrant-amd64-disk1.box' ubuntu.vm.box = 'ubuntu-12.04-amd64' end - # vagrant box add rhel-6-amd64 http://puppetlabs.s3.amazonaws.com/pub/rhel60_64.box config.vm.define :redhat do |redhat| redhat.vm.box = 'rhel-6-amd64' + redhat.vm.box_url = 'http://puppetlabs.s3.amazonaws.com/pub/rhel60_64.box' end - # vagrant box add centos-6-amd64 http://puppetlabs.s3.amazonaws.com/pub/centos4_64.box config.vm.define :centos do |centos| centos.vm.box = 'centos-6-amd64' + centos.vm.box_url = 'http://puppetlabs.s3.amazonaws.com/pub/centos4_64.box' end - # vagrant box add freebsd-9.1-amd64 https://github.com/downloads/xironix/freebsd-vagrant/freebsd_amd64_ufs.box config.vm.define :freebsd do |freebsd| freebsd.vm.box = 'freebsd-9.1-amd64' + freebsd.vm.box_url = 'https://github.com/downloads/xironix/freebsd-vagrant/freebsd_amd64_ufs.box' end - # vagrant box add openbsd-5.2-amd64 https://dl.dropbox.com/s/5ietqc3thdholuh/openbsd-52-64.box config.vm.define :openbsd do |openbsd| openbsd.vm.box = 'openbsd-5.2-amd64' + openbsd.vm.box_url = 'https://dl.dropbox.com/s/5ietqc3thdholuh/openbsd-52-64.box' end end