Skip to content

Commit f5ad901

Browse files
authored
Merge pull request #5758 from tstromberg/inverted-ssh
Do not check sshd for the none driver
2 parents ccd82fe + b1fd21e commit f5ad901

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/minikube/cmd/start.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,7 @@ func validateNetwork(h *host.Host, r command.Runner) string {
10031003
}
10041004
}
10051005

1006-
if driver.BareMetal(h.Driver.DriverName()) {
1006+
if !driver.BareMetal(h.Driver.DriverName()) {
10071007
sshAddr := fmt.Sprintf("%s:22", ip)
10081008
conn, err := net.Dial("tcp", sshAddr)
10091009
if err != nil {

0 commit comments

Comments
 (0)