mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-23 08:21:43 -04:00
19 lines
657 B
Markdown
19 lines
657 B
Markdown
<!-- Code generated from the comments of the VNCConfig struct in common/bootcommand/config.go; DO NOT EDIT MANUALLY -->
|
|
The boot command "typed" character for character over a VNC connection to
|
|
the machine, simulating a human actually typing the keyboard.
|
|
|
|
Keystrokes are typed as separate key up/down events over VNC with a default
|
|
100ms delay. The delay alleviates issues with latency and CPU contention.
|
|
You can tune this delay on a per-builder basis by specifying
|
|
"boot_key_interval" in your Packer template, example:
|
|
|
|
``` json
|
|
"builders": [
|
|
{
|
|
"type": "...",
|
|
"boot_key_interval": "10ms"
|
|
...
|
|
}
|
|
]
|
|
```
|