From 1edc931e7fb88723e9dc61616babefe2b1e86e5e Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Thu, 28 May 2020 13:14:45 -0700 Subject: [PATCH] actually run the fixer --- fix/fixer.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fix/fixer.go b/fix/fixer.go index 859e6e3aa..af1587aa1 100644 --- a/fix/fixer.go +++ b/fix/fixer.go @@ -50,6 +50,7 @@ func init() { "ssh-wait-timeout": new(FixerSSHTimout), "docker-tag-tags": new(FixerDockerTagtoTags), "vsphere-iso-net-disk": new(FixerVSphereNetworkDisk), + "iso-checksum-type-and-url": new(FixerISOChecksumTypeAndURL), } FixerOrder = []string{ @@ -83,5 +84,6 @@ func init() { "comm-config", "ssh-wait-timeout", "vsphere-iso-net-disk", + "iso-checksum-type-and-url", } }