summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorBruno Wagner <bwgpro@gmail.com>2015-04-28 18:29:57 -0300
committerBruno Wagner <bwgpro@gmail.com>2015-04-28 18:29:57 -0300
commit362a0c0374166ccd652eb61ec4551e4194f9d2c5 (patch)
tree8e7435dce6fd4c5af7e5d0ae2d7b6afa8586d14e /Vagrantfile
parenta7c356ef9311981d32bda0bfe80c5f84a6f0f717 (diff)
Updated user agent vagrant to run on Jessie
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile10
1 files changed, 2 insertions, 8 deletions
diff --git a/Vagrantfile b/Vagrantfile
index ecced488..6f1f1d1f 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -27,14 +27,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# see https://leap.se/en/docs/platform/details/development#Verify.vagrantbox.download
# for details
- config.vm.box = "leap-wheezy"
+ config.vm.box = "boxcutter/debian80"
config.vbguest.auto_update = false
config.vm.define "source", primary: true do |source|
- source.vm.provider :virtualbox do |v, override|
- override.vm.box_url = "https://downloads.leap.se/platform/vagrant/virtualbox/leap-wheezy.box"
- end
source.vm.provider "libvirt" do |v, override|
override.vm.box_url = "https://downloads.leap.se/platform/vagrant/libvirt/leap-wheezy.box"
end
@@ -49,10 +46,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# until https://github.com/pixelated-project/pixelated-user-agent/issues/226 is not fixed,
# we depend on a debian testing box
- config.vm.box = "leap-wheezy"
- deb.vm.provider "virtualbox" do |v, override|
- override.vm.box_url = "https://downloads.leap.se/platform/vagrant/virtualbox/leap-wheezy.box"
- end
+ config.vm.box = "boxcutter/debian80"
deb.vm.provider "libvirt" do |v, override|
override.vm.box_url = "https://downloads.leap.se/platform/vagrant/libvirt/leap-wheezy.box"
end