From c4f0420d72532d1fd0aea70e3f5e63e99bc9d225 Mon Sep 17 00:00:00 2001 From: sophia Date: Wed, 12 May 2021 15:42:47 -0500 Subject: [PATCH] Parse Vagrantfile to proto --- plugins/commands/serve/service/internal_service.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/commands/serve/service/internal_service.rb b/plugins/commands/serve/service/internal_service.rb index 1cd008e55..c5b3a1f82 100644 --- a/plugins/commands/serve/service/internal_service.rb +++ b/plugins/commands/serve/service/internal_service.rb @@ -50,8 +50,10 @@ module VagrantPlugins config = root_config.vm machine_configs << Hashicorp::Vagrant::VagrantfileComponents::MachineConfig.new( name: mach.to_s, - box: config.box, - provisioners: [] + config_vm: Hashicorp::Vagrant::VagrantfileComponents::ConfigVM.new( + box: config.box, + provisioners: [] + ), ) end