add vmware-compaction fixer help

This commit is contained in:
Jeffrey Martin 2018-07-16 20:45:47 -05:00
parent 1833b4edaf
commit e8f04c34a3
No known key found for this signature in database
GPG Key ID: 0CD9BBC2AF15F171
2 changed files with 4 additions and 2 deletions

View File

@ -157,6 +157,8 @@ Fixes that are run:
Hyper-V ISO builder templates Hyper-V ISO builder templates
hyperv-vmxc-typo Corrects a typo in the "clone_from_vmxc_path" hyperv-vmxc-typo Corrects a typo in the "clone_from_vmxc_path"
setting. Replaces with "clone_from_vmcx_path". setting. Replaces with "clone_from_vmcx_path".
vmware-compaction Adds "skip_compaction = true" to "vmware-iso"
builders with incompatible disk_type_id
Options: Options:

View File

@ -38,6 +38,7 @@ func init() {
"powershell-escapes": new(FixerPowerShellEscapes), "powershell-escapes": new(FixerPowerShellEscapes),
"hyperv-deprecations": new(FixerHypervDeprecations), "hyperv-deprecations": new(FixerHypervDeprecations),
"hyperv-vmxc-typo": new(FixerHypervVmxcTypo), "hyperv-vmxc-typo": new(FixerHypervVmxcTypo),
"vmware-compaction": new(FixerVMwareCompaction),
} }
FixerOrder = []string{ FixerOrder = []string{
@ -57,7 +58,6 @@ func init() {
"amazon-private-ip", "amazon-private-ip",
"docker-email", "docker-email",
"powershell-escapes", "powershell-escapes",
"hyperv-deprecations", "vmware-compaction",
"hyperv-vmxc-typo",
} }
} }