From ac076366331e0f999506ec80dade0d863d431556 Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Tue, 28 Nov 2023 14:54:51 -0500 Subject: [PATCH] Add VirtualBox as known plugin prefix It was found in https://github.com/hashicorp/packer/issues/12715 that the bundled version of the Virtualbox plugin was not included in the bundled plugin warning. This miss lead to a user consistently receiving warning even when addressing the reported warning. --- command/meta.go | 1 + 1 file changed, 1 insertion(+) diff --git a/command/meta.go b/command/meta.go index fb3d9efb2a7..c31189263b9 100644 --- a/command/meta.go +++ b/command/meta.go @@ -268,6 +268,7 @@ var knownPluginPrefixes = map[string]string{ "googlecompute": "github.com/hashicorp/googlecompute", "qemu": "github.com/hashicorp/qemu", "vagrant": "github.com/hashicorp/vagrant", + "virtualbox": "github.com/hashicorp/virtualbox", "vmware": "github.com/hashicorp/vmware", "vsphere": "github.com/hashicorp/vsphere", }