mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-26 17:53:59 -04:00
builder/vmware: support the <tab> special in boot commands
This commit is contained in:
@@ -96,8 +96,9 @@ func (*stepTypeBootCommand) Cleanup(map[string]interface{}) {}
|
||||
func vncSendString(c *vnc.ClientConn, original string) {
|
||||
special := make(map[string]uint32)
|
||||
special["<enter>"] = 0xFF0D
|
||||
special["<return>"] = 0xFF0D
|
||||
special["<esc>"] = 0xFF1B
|
||||
special["<return>"] = 0xFF0D
|
||||
special["<tab>"] = 0xFF09
|
||||
|
||||
shiftedChars := "~!@#$%^&*()_+{}|:\"<>?"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user