packer-cn/fix/fixer.go

46 lines
1.3 KiB
Go
Raw Normal View History

2013-07-14 03:51:20 -04:00
package fix
// A Fixer is something that can perform a fix operation on a template.
type Fixer interface {
// Fix takes a raw map structure input, potentially transforms it
// in some way, and returns the new, transformed structure. The
// Fix method is allowed to mutate the input.
Fix(input map[string]interface{}) (map[string]interface{}, error)
// Synopsis returns a string description of what the fixer actually
// does.
Synopsis() string
2013-07-14 03:51:20 -04:00
}
// Fixers is the map of all available fixers, by name.
var Fixers map[string]Fixer
2013-12-19 17:44:12 -05:00
// FixerOrder is the default order the fixers should be run.
var FixerOrder []string
2013-07-14 03:51:20 -04:00
func init() {
Fixers = map[string]Fixer{
"iso-md5": new(FixerISOMD5),
"createtime": new(FixerCreateTime),
"pp-vagrant-override": new(FixerVagrantPPOverride),
"virtualbox-gaattach": new(FixerVirtualBoxGAAttach),
"virtualbox-rename": new(FixerVirtualBoxRename),
"vmware-rename": new(FixerVMwareRename),
"parallels-headless": new(FixerParallelsHeadless),
"parallels-deprecations": new(FixerParallelsDeprecations),
"sshkeypath": new(FixerSSHKeyPath),
2013-07-14 03:51:20 -04:00
}
2013-12-19 17:44:12 -05:00
FixerOrder = []string{
"iso-md5",
"createtime",
"virtualbox-gaattach",
2013-12-19 17:54:00 -05:00
"pp-vagrant-override",
"virtualbox-rename",
"vmware-rename",
"parallels-headless",
"parallels-deprecations",
"sshkeypath",
2013-12-19 17:44:12 -05:00
}
2013-07-14 03:51:20 -04:00
}