mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-13 10:40:05 -04:00
* Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at https://hashi.co/license-faq, and details of the license at www.hashicorp.com/bsl. * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
68 lines
1.4 KiB
Go
68 lines
1.4 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package fix
|
|
|
|
import (
|
|
"github.com/mitchellh/mapstructure"
|
|
)
|
|
|
|
// FixerManifestFilename renames any Filename to Output
|
|
type FixerManifestFilename struct{}
|
|
|
|
func (FixerManifestFilename) DeprecatedOptions() map[string][]string {
|
|
return map[string][]string{
|
|
"packer.post-processor.manifest": []string{"filename"},
|
|
}
|
|
}
|
|
|
|
func (FixerManifestFilename) Fix(input map[string]interface{}) (map[string]interface{}, error) {
|
|
if input["post-processors"] == nil {
|
|
return input, nil
|
|
}
|
|
|
|
// Our template type we'll use for this fixer only
|
|
type template struct {
|
|
PP `mapstructure:",squash"`
|
|
}
|
|
|
|
// Decode the input into our structure, if we can
|
|
var tpl template
|
|
if err := mapstructure.Decode(input, &tpl); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Go through each post-processor and get out all the complex configs
|
|
pps := tpl.ppList()
|
|
|
|
for _, pp := range pps {
|
|
ppTypeRaw, ok := pp["type"]
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
if ppType, ok := ppTypeRaw.(string); !ok {
|
|
continue
|
|
} else if ppType != "manifest" {
|
|
continue
|
|
}
|
|
|
|
filenameRaw, ok := pp["filename"]
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
if filename, ok := filenameRaw.(string); ok {
|
|
delete(pp, "filename")
|
|
pp["output"] = filename
|
|
}
|
|
|
|
}
|
|
|
|
input["post-processors"] = tpl.PostProcessors
|
|
return input, nil
|
|
}
|
|
|
|
func (FixerManifestFilename) Synopsis() string {
|
|
return `Updates "manifest" post-processor so any "filename" field is renamed to "output".`
|
|
}
|