eaksel / packer-Debian10

Packer configuration files for Debian 10
MIT License
10 stars 14 forks source link

variable iso_checksum_type does not exist anymore #2

Closed coveritytest closed 3 years ago

coveritytest commented 3 years ago

packer build fails because iso_checksum_type does not exist anymore. you can remove iso_checksum_type as packer recognizes the type automatically. tested with latest version 1.6.2.

eaksel commented 3 years ago

Hi coveritytest,

Thanks for the info, I've removed 'iso_checksum_type' from the config file, everything is back to normal.

If this also works for you, feel free to close the issue.

hacklab808 commented 3 years ago

For what it is worth, there may be some people on older versions of Packer. I, for instance, was running Packer 1.3.4 on a system. So, I had to insert:

"iso_checksum_type": "sha256", and "iso_checksum_type": "{{user iso_checksum_type}}",

in appropriate sections of debian10.json

eaksel commented 3 years ago

Hi hacklab808,

That's indeed something to be aware of.

I think that it would be best if the configuration files are compatible with the latest version of Packer.

coveritytest commented 3 years ago

Thanks for the quick fix.