From 018a1a5da09252602c0fe89628daaddb52527da1 Mon Sep 17 00:00:00 2001 From: Jeff Wong Date: Mon, 14 Sep 2020 12:15:07 -0700 Subject: [PATCH] Correct full clone logic --- builder/proxmox/clone/builder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/proxmox/clone/builder.go b/builder/proxmox/clone/builder.go index 7dfb906a8..981322634 100644 --- a/builder/proxmox/clone/builder.go +++ b/builder/proxmox/clone/builder.go @@ -57,7 +57,7 @@ func (*cloneVMCreator) Create(vmRef *proxmoxapi.VmRef, config proxmoxapi.ConfigQ comm := state.Get("comm").(*communicator.Config) fullClone := 1 - if c.FullClone { + if c.FullClone == false { fullClone = 0 }