Hi Peter, Setting boot_wait to 0s is the same as if you don't set it because zero is the empty value for a time.Duration variable, Packer will then set the default wait time which is 10 seconds, here's the line code where this happens <https://github.com/hashicorp/packer/blob/master/common/bootcommand/config.go#L147> . If you set to 1s instead it will work and won't need to wait for the entire 10 seconds default, only for 1 second.
If you think this is a bug, I advise you to open an issue on Github https://github.com/hashicorp/packer/issues. -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/packer/issues IRC: #packer-tool on Freenode --- You received this message because you are subscribed to the Google Groups "Packer" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/packer-tool/af50172e-3931-4e97-8280-3c907a360274%40googlegroups.com.
