mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-09 00:32:09 -04:00
only set up localhost port forwarding if skipnatmapping is false.
This commit is contained in:
parent
38eef12b83
commit
cd5cf77998
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ func (c *CommConfig) Prepare(ctx *interpolate.Context) (warnings []string, errs
|
|||
c.HostPortMax = c.SSHHostPortMax
|
||||
}
|
||||
|
||||
if c.Comm.SSHHost == "" {
|
||||
if c.Comm.SSHHost == "" && c.SkipNatMapping {
|
||||
c.Comm.SSHHost = "127.0.0.1"
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue