kernel/v1: provisioner upgrade works properly [GH-3092]

This commit is contained in:
Mitchell Hashimoto 2014-03-10 13:43:57 -07:00
parent 06ce5661d3
commit 171b7c76d7
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,8 @@
## 1.5.1 (unreleased)
BUG FIXES:
- core: V1 Vagrantfiles can upgrade provisioners properly. [GH-3092]
## 1.5.0 (March 10, 2014)

View File

@ -146,7 +146,8 @@ module VagrantPlugins
# Provisioners
self.provisioners.each do |name, options, block|
new.vm.provision(name, options, &block)
options ||= {}
new.vm.provision(name, **options, &block)
end
# Shared folders