Fix Hyper-V boot command refs #5291 (#9765)

This commit is contained in:
Isaac Buckman 2020-08-17 10:00:43 -04:00 committed by GitHub
parent 56f6a976de
commit 46a26a3d9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ func (s *StepTypeBootCommand) Run(ctx context.Context, state multistep.StateBag)
scanCodesToSendString := strings.Join(codes, " ")
return driver.TypeScanCodes(vmName, scanCodesToSendString)
}
d := bootcommand.NewPCXTDriver(sendCodes, -1, s.GroupInterval)
d := bootcommand.NewPCXTDriver(sendCodes, 32, s.GroupInterval)
ui.Say("Typing the boot command...")
command, err := interpolate.Render(s.BootCommand, &s.Ctx)