* 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
28 lines
703 B
Go
28 lines
703 B
Go
package common
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/hashicorp/packer/helper/communicator"
|
|
"github.com/hashicorp/packer/template/interpolate"
|
|
)
|
|
|
|
// SSHConfig contains the configuration for SSH communicator.
|
|
type SSHConfig struct {
|
|
Comm communicator.Config `mapstructure:",squash"`
|
|
|
|
// These are deprecated, but we keep them around for BC
|
|
// TODO: remove later
|
|
SSHWaitTimeout time.Duration `mapstructure:"ssh_wait_timeout" required:"false"`
|
|
}
|
|
|
|
// Prepare sets the default values for SSH communicator properties.
|
|
func (c *SSHConfig) Prepare(ctx *interpolate.Context) []error {
|
|
// Backwards compatibility
|
|
if c.SSHWaitTimeout != 0 {
|
|
c.Comm.SSHTimeout = c.SSHWaitTimeout
|
|
}
|
|
|
|
return c.Comm.Prepare(ctx)
|
|
}
|