Skip to content

Commit

Permalink
Merge pull request #5758 from tstromberg/inverted-ssh
Browse files Browse the repository at this point in the history
Do not check sshd for the none driver
  • Loading branch information
tstromberg authored Oct 28, 2019
2 parents ccd82fe + b1fd21e commit f5ad901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/minikube/cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,7 @@ func validateNetwork(h *host.Host, r command.Runner) string {
}
}

if driver.BareMetal(h.Driver.DriverName()) {
if !driver.BareMetal(h.Driver.DriverName()) {
sshAddr := fmt.Sprintf("%s:22", ip)
conn, err := net.Dial("tcp", sshAddr)
if err != nil {
Expand Down

0 comments on commit f5ad901

Please sign in to comment.