Compare commits
No commits in common. "b25c7ea5ea881b9be4a3c7da9439e6e36650052a" and "2f73df73b1c2431ed6679308374f97f58950157c" have entirely different histories.
b25c7ea5ea
...
2f73df73b1
@ -9,7 +9,6 @@ import (
|
|||||||
"os/user"
|
"os/user"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/kevinburke/ssh_config"
|
"github.com/kevinburke/ssh_config"
|
||||||
"golang.org/x/crypto/ssh"
|
"golang.org/x/crypto/ssh"
|
||||||
@ -107,13 +106,13 @@ func (remoteConfig *Host) ConnectToSSHHost() (*ssh.Client, error) {
|
|||||||
User: remoteConfig.User,
|
User: remoteConfig.User,
|
||||||
Auth: []ssh.AuthMethod{ssh.PublicKeys(signer)},
|
Auth: []ssh.AuthMethod{ssh.PublicKeys(signer)},
|
||||||
HostKeyCallback: ssh.FixedHostKey(hostKey),
|
HostKeyCallback: ssh.FixedHostKey(hostKey),
|
||||||
Timeout: 5 * time.Second,
|
|
||||||
}
|
}
|
||||||
for _, host := range remoteConfig.HostName {
|
for _, host := range remoteConfig.HostName {
|
||||||
println("Connecting to " + host)
|
println("Connecting to " + host)
|
||||||
sshClient, connectErr = ssh.Dial("tcp", host, sshConfig)
|
sshClient, connectErr = ssh.Dial("tcp", host, sshConfig)
|
||||||
if connectErr != nil {
|
if connectErr != nil {
|
||||||
panic(fmt.Errorf("error when connecting to host %s: %w", host, connectErr))
|
continue
|
||||||
|
// panic(fmt.Errorf("error when connecting to host %s: %w", host, connectErr))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user