communicator/ssh: agent forward failure is not fatal

On connections where no second hop is made, there's no problem if the
agent forwarding connection is denied, so we shouldn't treat that as a
fatal error.
This commit is contained in:
Paul Hinze 2015-07-10 12:51:45 -06:00
parent 03cbb52dac
commit 138018c896
1 changed files with 6 additions and 4 deletions

View File

@ -136,11 +136,13 @@ func (c *Communicator) Connect(o terraform.UIOutput) (err error) {
}
defer session.Close()
if err = agent.RequestAgentForwarding(session); err != nil {
return err
}
err = agent.RequestAgentForwarding(session)
log.Printf("[INFO] agent forwarding enabled")
if err == nil {
log.Printf("[INFO] agent forwarding enabled")
} else {
log.Printf("[WARN] error forwarding agent: %s", err)
}
}
if o != nil {