aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKwadroNaut <KwadroNaut@users.noreply.github.com>2014-11-01 00:49:14 +0100
committerKwadroNaut <KwadroNaut@users.noreply.github.com>2014-11-01 00:49:14 +0100
commitefe3a57f7d4ef845b7029d477454a18fd0e3dc41 (patch)
tree4a3457fab3c220ae37e8bbcc0e808056aab145d0
parent98bd8c88c2cff5b267bf2d125ef4515ec241954f (diff)
downloadleap_cli-efe3a57f7d4ef845b7029d477454a18fd0e3dc41.tar.gz
leap_cli-efe3a57f7d4ef845b7029d477454a18fd0e3dc41.tar.bz2
update basebox url closes #5468
By using 'wheezy' instead of Debian in the url and box name, this is less confusing. At the same time, this makes it easier to support jessie boxes in the near future. The subdirectory virtualbox is to differentiate with the libvirt ones.
-rw-r--r--lib/leap_cli/commands/vagrant.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/leap_cli/commands/vagrant.rb b/lib/leap_cli/commands/vagrant.rb
index 24310e2..5219161 100644
--- a/lib/leap_cli/commands/vagrant.rb
+++ b/lib/leap_cli/commands/vagrant.rb
@@ -156,7 +156,7 @@ module LeapCli; module Commands
if node.vagrant?
lines << %[ config.vm.define :#{node.name} do |config|]
lines << %[ config.vm.box = "leap-wheezy"]
- lines << %[ config.vm.box_url = "https://downloads.leap.se/platform/leap-debian.box"]
+ lines << %[ config.vm.box_url = "https://downloads.leap.se/platform/vagrant/virtualbox/leap-wheezy.box"]
lines << %[ config.vm.network :hostonly, "#{node.ip_address}", :netmask => "#{netmask}"]
lines << %[ config.vm.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]]
lines << %[ config.vm.customize ["modifyvm", :id, "--name", "#{node.name}"]]
@@ -170,7 +170,7 @@ module LeapCli; module Commands
if node.vagrant?
lines << %[ config.vm.define :#{node.name} do |config|]
lines << %[ config.vm.box = "leap-wheezy"]
- lines << %[ config.vm.box_url = "https://downloads.leap.se/platform/leap-debian.box"]
+ lines << %[ config.vm.box_url = "https://downloads.leap.se/platform/vagrant/virtualbox/leap-wheezy.box"]
lines << %[ config.vm.network :private_network, ip: "#{node.ip_address}"]
lines << %[ config.vm.provider "virtualbox" do |v|]
lines << %[ v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]]