summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorPatrick Maia <patrickjourdanmaia@gmail.com>2015-02-06 21:27:58 +0000
committervarac <varacanero@zeromail.org>2015-02-09 13:49:44 +0100
commit687b30209b628d4a9678df29d0ac8ef8bf657b4f (patch)
tree59fe6748336a10aa0247bb2b71e149070a71f96b /Vagrantfile
parentff4ebf784e4df248c20d01dcc7e8905aee74d79c (diff)
Fix debian package dependencies in Vagrant deb box when using wheezy #278
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Vagrantfile b/Vagrantfile
index db24483d..76fa6fa6 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -38,12 +38,12 @@ 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-jessie-amd64"
+ config.vm.box = "leap-wheezy"
deb.vm.provider "virtualbox" do |v, override|
- override.vm.box_url = "https://downloads.leap.se/platform/vagrant/virtualbox/leap-debian-jessie-amd64-virtualbox.box"
+ override.vm.box_url = "https://downloads.leap.se/platform/vagrant/virtualbox/leap-wheezy.box"
end
deb.vm.provider "libvirt" do |v, override|
- override.vm.box_url = "https://downloads.leap.se/platform/vagrant/libvirt/Debian-jessie.beta1-amd64-netboot.box"
+ override.vm.box_url = "https://downloads.leap.se/platform/vagrant/libvirt/leap-wheezy.box"
end
deb.vm.provision "puppet" do |puppet|
puppet.manifests_path = "provisioning/manifests"