vagrant: the boxcutter wheezy boxes are 404, use local ones

This commit is contained in:
Thomas Waldmann 2018-03-27 20:59:57 +02:00
parent 011ba3ddf4
commit ea03c1dd70
1 changed files with 2 additions and 2 deletions

4
Vagrantfile vendored
View File

@ -443,7 +443,7 @@ Vagrant.configure(2) do |config|
end
config.vm.define "wheezy32" do |b|
b.vm.box = "boxcutter/debian7-i386"
b.vm.box = "debian7-i386"
b.vm.provider :virtualbox do |v|
v.memory = 768 + $wmem
end
@ -460,7 +460,7 @@ Vagrant.configure(2) do |config|
end
config.vm.define "wheezy64" do |b|
b.vm.box = "boxcutter/debian7"
b.vm.box = "debian7-amd64"
b.vm.provider :virtualbox do |v|
v.memory = 1024 + $wmem
end