Merge pull request #9022 from hashicorp/document_boot_wait

properly document how to set boot_wait to 0s
This commit is contained in:
Wilken Rivera 2020-04-08 00:10:34 -04:00 committed by GitHub
commit 3892e0905a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -117,7 +117,8 @@ type BootConfig struct {
// the `boot_command`. The value of this should be a duration. Examples are // the `boot_command`. The value of this should be a duration. Examples are
// `5s` and `1m30s` which will cause Packer to wait five seconds and one // `5s` and `1m30s` which will cause Packer to wait five seconds and one
// minute 30 seconds, respectively. If this isn't specified, the default is // minute 30 seconds, respectively. If this isn't specified, the default is
// `10s` or 10 seconds. // `10s` or 10 seconds. To set boot_wait to 0s, use a negative number, such
// as "-1s"
BootWait time.Duration `mapstructure:"boot_wait"` BootWait time.Duration `mapstructure:"boot_wait"`
// This is an array of commands to type when the virtual machine is first // This is an array of commands to type when the virtual machine is first
// booted. The goal of these commands should be to type just enough to // booted. The goal of these commands should be to type just enough to

View File

@ -10,7 +10,8 @@
the `boot_command`. The value of this should be a duration. Examples are the `boot_command`. The value of this should be a duration. Examples are
`5s` and `1m30s` which will cause Packer to wait five seconds and one `5s` and `1m30s` which will cause Packer to wait five seconds and one
minute 30 seconds, respectively. If this isn't specified, the default is minute 30 seconds, respectively. If this isn't specified, the default is
`10s` or 10 seconds. `10s` or 10 seconds. To set boot_wait to 0s, use a negative number, such
as "-1s"
- `boot_command` ([]string) - This is an array of commands to type when the virtual machine is first - `boot_command` ([]string) - This is an array of commands to type when the virtual machine is first
booted. The goal of these commands should be to type just enough to booted. The goal of these commands should be to type just enough to