Merge pull request #4910 from decomposite/HostKeyCallback

Specify InsecureIgnoreHostKey for HostKeyCallback
This commit is contained in:
Matthew Hooker 2017-05-20 17:58:27 -07:00 committed by GitHub
commit 3bf637f0d3
7 changed files with 19 additions and 12 deletions

View File

@ -44,6 +44,7 @@ func SSHConfigFunc(config *SSHConfig) func(multistep.StateBag) (*gossh.ClientCon
return &gossh.ClientConfig{ return &gossh.ClientConfig{
User: config.Comm.SSHUsername, User: config.Comm.SSHUsername,
Auth: auth, Auth: auth,
HostKeyCallback: gossh.InsecureIgnoreHostKey(),
}, nil }, nil
} }
} }

View File

@ -50,6 +50,7 @@ func SSHConfig(username string, password string, privateKeyFile string) func(mul
gossh.KeyboardInteractive( gossh.KeyboardInteractive(
ssh.PasswordKeyboardInteractive(password)), ssh.PasswordKeyboardInteractive(password)),
}, },
HostKeyCallback: gossh.InsecureIgnoreHostKey(),
}, nil }, nil
} }
} }

View File

@ -43,5 +43,6 @@ func sshConfig(state multistep.StateBag) (*gossh.ClientConfig, error) {
return &gossh.ClientConfig{ return &gossh.ClientConfig{
User: config.Comm.SSHUsername, User: config.Comm.SSHUsername,
Auth: auth, Auth: auth,
HostKeyCallback: gossh.InsecureIgnoreHostKey(),
}, nil }, nil
} }

View File

@ -43,5 +43,6 @@ func sshConfig(state multistep.StateBag) (*gossh.ClientConfig, error) {
return &gossh.ClientConfig{ return &gossh.ClientConfig{
User: config.Comm.SSHUsername, User: config.Comm.SSHUsername,
Auth: auth, Auth: auth,
HostKeyCallback: gossh.InsecureIgnoreHostKey(),
}, nil }, nil
} }

View File

@ -37,5 +37,6 @@ func sshConfig(state multistep.StateBag) (*gossh.ClientConfig, error) {
return &gossh.ClientConfig{ return &gossh.ClientConfig{
User: config.Comm.SSHUsername, User: config.Comm.SSHUsername,
Auth: auth, Auth: auth,
HostKeyCallback: gossh.InsecureIgnoreHostKey(),
}, nil }, nil
} }

View File

@ -38,6 +38,7 @@ func SSHConfigFunc(config SSHConfig) func(multistep.StateBag) (*gossh.ClientConf
return &gossh.ClientConfig{ return &gossh.ClientConfig{
User: config.Comm.SSHUsername, User: config.Comm.SSHUsername,
Auth: auth, Auth: auth,
HostKeyCallback: gossh.InsecureIgnoreHostKey(),
}, nil }, nil
} }
} }

View File

@ -86,6 +86,7 @@ func SSHConfigFunc(config *SSHConfig) func(multistep.StateBag) (*gossh.ClientCon
return &gossh.ClientConfig{ return &gossh.ClientConfig{
User: config.Comm.SSHUsername, User: config.Comm.SSHUsername,
Auth: auth, Auth: auth,
HostKeyCallback: gossh.InsecureIgnoreHostKey(),
}, nil }, nil
} }
} }