From 28d339eac59fe925d3fb2d6b0f3b0eab9ef89f47 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Fri, 18 Oct 2019 11:27:46 -0700 Subject: [PATCH] Ensure block is properly passed through to add_config --- plugins/kernel_v2/config/vm.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/kernel_v2/config/vm.rb b/plugins/kernel_v2/config/vm.rb index 879a4f466..7ec7942aa 100644 --- a/plugins/kernel_v2/config/vm.rb +++ b/plugins/kernel_v2/config/vm.rb @@ -400,7 +400,7 @@ module VagrantPlugins block.call(disk, VagrantConfigDisk) end - disk.add_config(options, block) + disk.add_config(options, &block) @__drives << disk