diff options
author | elijah <elijah@riseup.net> | 2013-02-07 00:39:36 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-02-07 00:39:36 -0800 |
commit | 63221757b064d137a43ee58a45bcf86e48c2e736 (patch) | |
tree | 37442f0aaebe71555c091d5cd0b0b10166aac8f3 | |
parent | 8795fe0c766e85f331084ea2580d1ad4c2890e7f (diff) | |
parent | 353b71d0b4f0442ba117642ff28af495c24f93fc (diff) | |
download | leap_cli-63221757b064d137a43ee58a45bcf86e48c2e736.tar.gz leap_cli-63221757b064d137a43ee58a45bcf86e48c2e736.tar.bz2 |
Merge branch 'master' of ssh://leap.se/leap_cli
-rw-r--r-- | lib/leap_cli/commands/vagrant.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/commands/vagrant.rb b/lib/leap_cli/commands/vagrant.rb index dae6f53..6df78e3 100644 --- a/lib/leap_cli/commands/vagrant.rb +++ b/lib/leap_cli/commands/vagrant.rb @@ -118,7 +118,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 = "http://cloud.github.com/downloads/leapcode/minimal-debian-vagrant/leap-wheezy.box"] + lines << %[ config.vm.box_url = "http://download.leap.se/leap-debian.box"] lines << %[ config.vm.network :hostonly, "#{node.ip_address}", :netmask => "#{netmask}"] lines << %[ config.vm.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]] lines << %[ #{leapfile.custom_vagrant_vm_line}] if leapfile.custom_vagrant_vm_line |