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
|
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:
|
||||||
|
|
||||||
|
|
|
@ -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",
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue