core: box removal of a V1 box works
This commit is contained in:
parent
b3cbeddf3f
commit
8a0241f2b4
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
BUG FIXES:
|
BUG FIXES:
|
||||||
|
|
||||||
|
- core: box removal of a V1 box works
|
||||||
- guests/debian,ubuntu: fix change\_host\_name for FQDNs with trailing
|
- guests/debian,ubuntu: fix change\_host\_name for FQDNs with trailing
|
||||||
dots [GH-2610]
|
dots [GH-2610]
|
||||||
- guests/freebsd: configuring networks in the guest works properly
|
- guests/freebsd: configuring networks in the guest works properly
|
||||||
|
|
|
@ -18,7 +18,7 @@ module Vagrant
|
||||||
begin
|
begin
|
||||||
box = env[:box_collection].find(box_name, box_provider)
|
box = env[:box_collection].find(box_name, box_provider)
|
||||||
rescue Vagrant::Errors::BoxUpgradeRequired
|
rescue Vagrant::Errors::BoxUpgradeRequired
|
||||||
@env.boxes.upgrade(box_name)
|
env[:box_collection].upgrade(box_name)
|
||||||
retry
|
retry
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue