add vmware-compaction fixer help
This commit is contained in:
parent
1833b4edaf
commit
e8f04c34a3
|
@ -157,6 +157,8 @@ Fixes that are run:
|
|||
Hyper-V ISO builder templates
|
||||
hyperv-vmxc-typo Corrects a typo in the "clone_from_vmxc_path"
|
||||
setting. Replaces with "clone_from_vmcx_path".
|
||||
vmware-compaction Adds "skip_compaction = true" to "vmware-iso"
|
||||
builders with incompatible disk_type_id
|
||||
|
||||
Options:
|
||||
|
||||
|
|
|
@ -38,6 +38,7 @@ func init() {
|
|||
"powershell-escapes": new(FixerPowerShellEscapes),
|
||||
"hyperv-deprecations": new(FixerHypervDeprecations),
|
||||
"hyperv-vmxc-typo": new(FixerHypervVmxcTypo),
|
||||
"vmware-compaction": new(FixerVMwareCompaction),
|
||||
}
|
||||
|
||||
FixerOrder = []string{
|
||||
|
@ -57,7 +58,6 @@ func init() {
|
|||
"amazon-private-ip",
|
||||
"docker-email",
|
||||
"powershell-escapes",
|
||||
"hyperv-deprecations",
|
||||
"hyperv-vmxc-typo",
|
||||
"vmware-compaction",
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue