From a35eda70d8c52883eee8a8f0f8021eb4e296f336 Mon Sep 17 00:00:00 2001 From: Jeff Wong Date: Sun, 11 Oct 2020 11:39:24 -0700 Subject: [PATCH] Add proxmox fixer --- fix/fixer.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fix/fixer.go b/fix/fixer.go index d77c23152..82892bc7b 100644 --- a/fix/fixer.go +++ b/fix/fixer.go @@ -58,6 +58,7 @@ func init() { "vsphere-iso-net-disk": new(FixerVSphereNetworkDisk), "iso-checksum-type-and-url": new(FixerISOChecksumTypeAndURL), "qemu-host-port": new(FixerQEMUHostPort), + "proxmox-type": new(FixerProxmoxType), } FixerOrder = []string{ @@ -93,5 +94,6 @@ func init() { "vsphere-iso-net-disk", "iso-checksum-type-and-url", "qemu-host-port", + "proxmox-type", } }