25 lines
537 B
Go
25 lines
537 B
Go
//go:generate struct-markdown
|
|
|
|
package common
|
|
|
|
import (
|
|
"github.com/hashicorp/packer/helper/communicator"
|
|
"github.com/hashicorp/packer/template/interpolate"
|
|
)
|
|
|
|
type SSHConfig struct {
|
|
Comm communicator.Config `mapstructure:",squash"`
|
|
|
|
// These are deprecated, but we keep them around for BC
|
|
// TODO(@mitchellh): remove
|
|
SSHSkipRequestPty bool `mapstructure:"ssh_skip_request_pty"`
|
|
}
|
|
|
|
func (c *SSHConfig) Prepare(ctx *interpolate.Context) []error {
|
|
if c.SSHSkipRequestPty {
|
|
c.Comm.SSHPty = false
|
|
}
|
|
|
|
return c.Comm.Prepare(ctx)
|
|
}
|