1
0
mirror of https://github.com/rancher/rke.git synced 2025-07-31 06:49:54 +00:00

Merge pull request #127 from galal-hussein/fix_redundant_tunnels

Fix redundant ssh tunnels for hosts
This commit is contained in:
Alena Prokharchyk 2017-12-08 23:38:50 -06:00 committed by GitHub
commit b01166cf68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,6 +51,9 @@ func (d *dialer) Dial(network, addr string) (net.Conn, error) {
}
func (h *Host) TunnelUp() error {
if h.DClient != nil {
return nil
}
logrus.Infof("[ssh] Setup tunnel for host [%s]", h.Address)
key, err := checkEncryptedKey(h.SSHKey, h.SSHKeyPath)
if err != nil {