builder/vmware: support the <tab> special in boot commands

This commit is contained in:
Mitchell Hashimoto 2013-06-23 16:09:12 -07:00
parent 7cdf113eb1
commit 1a8395baab
1 changed files with 2 additions and 1 deletions

View File

@ -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 := "~!@#$%^&*()_+{}|:\"<>?"