spelling: installation

This commit is contained in:
Josh Soref 2018-03-13 08:04:40 +00:00
parent 074b04522f
commit 62f59662a3
1 changed files with 3 additions and 3 deletions

View File

@ -15,10 +15,10 @@ import (
const port string = "13000" const port string = "13000"
type StepPollingInstalation struct { type StepPollingInstallation struct {
} }
func (s *StepPollingInstalation) Run(_ context.Context, state multistep.StateBag) multistep.StepAction { func (s *StepPollingInstallation) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
ui := state.Get("ui").(packer.Ui) ui := state.Get("ui").(packer.Ui)
errorMsg := "Error polling VM: %s" errorMsg := "Error polling VM: %s"
@ -75,6 +75,6 @@ func (s *StepPollingInstalation) Run(_ context.Context, state multistep.StateBag
return multistep.ActionContinue return multistep.ActionContinue
} }
func (s *StepPollingInstalation) Cleanup(state multistep.StateBag) { func (s *StepPollingInstallation) Cleanup(state multistep.StateBag) {
} }