From 71b815a5fd6d319647e238b32d9d3a2fd9dee3ee Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Fri, 5 Mar 2021 16:07:32 -0800 Subject: [PATCH] reword commits --- command/vendored_plugins.go | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/command/vendored_plugins.go b/command/vendored_plugins.go index 57427ba81..19762365a 100644 --- a/command/vendored_plugins.go +++ b/command/vendored_plugins.go @@ -13,15 +13,18 @@ import ( dockertagpostprocessor "github.com/hashicorp/packer-plugin-docker/post-processor/docker-tag" ) -// VendoredBuilders are builder components that were once bundle with Packer core, but are now being shim with there multi-component counterparts. +// VendoredBuilders are builder components that were once bundled with the +// Packer core, but are now being imported from their counterpart plugin repos var VendoredBuilders = map[string]packersdk.Builder{ "docker": new(dockerbuilder.Builder), } -// VendoredProvisioners are components that were once bundle with Packer core, but are now being shim with there multi-component counterparts. +// VendoredProvisioners are provisioner components that were once bundled with the +// Packer core, but are now being imported from their counterpart plugin repos var VendoredProvisioners = map[string]packersdk.Provisioner{} -// VendoredPostProcessors are components that were once bundle with Packer core, but are now being shim with there multi-component counterparts. +// VendoredPostProcessors are post-processor components that were once bundled with the +// Packer core, but are now being imported from their counterpart plugin repos var VendoredPostProcessors = map[string]packersdk.PostProcessor{ "docker-import": new(dockerimportpostprocessor.PostProcessor), "docker-push": new(dockerpushpostprocessor.PostProcessor), @@ -29,8 +32,8 @@ var VendoredPostProcessors = map[string]packersdk.PostProcessor{ "docker-tag": new(dockertagpostprocessor.PostProcessor), } -// Upon init lets load up any plugins that were vendored manually into the default -// set of plugins. +// Upon init lets us load up any plugins that were vendored manually into the +// default set of plugins. func init() { for k, v := range VendoredBuilders { if _, ok := Builders[k]; ok {