9ec8b67392
* Add golangci-lint as linting tool * Disable failing staticchecks to start; GitHub issue to handle coming soon * Run `goimports -w` to repair all source files that have improperly formatted imports * makefile: Add ci-lint target to run on travis This change adds a new make target for running golangci-lint on newly added Go files only. This target is expected to run during Packer ci builds. * .github/contributing: Add code linting instructions * travis: Update job configuration to run parallel builds
23 lines
557 B
Go
23 lines
557 B
Go
package qemu
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/hashicorp/packer/common"
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
)
|
|
|
|
// Step to discover the http ip
|
|
// which guests use to reach the vm host
|
|
// To make sure the IP is set before boot command and http server steps
|
|
type stepHTTPIPDiscover struct{}
|
|
|
|
func (s *stepHTTPIPDiscover) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
|
hostIP := "10.0.2.2"
|
|
common.SetHTTPIP(hostIP)
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *stepHTTPIPDiscover) Cleanup(state multistep.StateBag) {}
|