Skip to content

Commit

Permalink
Fix handling of SSD parameter.
Browse files Browse the repository at this point in the history
Closes #201.
  • Loading branch information
jeinwag authored and lbajolet-hashicorp committed Jul 10, 2023
1 parent f581c59 commit 6c76fbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/proxmox/common/step_start_vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func generateProxmoxDisks(disks []diskConfig) proxmox.QemuDevices {
}
return "ignore"
}())
setDeviceParamIfDefined(devs[idx], "ssd", strconv.FormatBool(disks[idx].IOThread))
setDeviceParamIfDefined(devs[idx], "ssd", strconv.FormatBool(disks[idx].SSD))
}
return devs
}
Expand Down

0 comments on commit 6c76fbb

Please sign in to comment.