Skip to content

Commit

Permalink
Apply changes also to the windows implementation
Browse files Browse the repository at this point in the history
Signed-off-by: Anders F Björklund <[email protected]>
  • Loading branch information
afbjorklund committed Oct 2, 2019
1 parent 23ae760 commit c831a64
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions pkg/adapter/client_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,18 @@ import (
)

func formatDefaultBridge(remoteConn *remoteclientconfig.RemoteConnection, logLevel string) string {
port := remoteConn.Port
if port == 0 {
port = 22
}
options := ""
if remoteConn.IdentityFile != "" {
options += " -i " + remoteConn.IdentityFile
}
if remoteConn.IgnoreHosts {
options += " -q -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"
}
return fmt.Sprintf(
`ssh -T %s@%s -- /usr/bin/varlink -A '/usr/bin/podman --log-level=%s varlink $VARLINK_ADDRESS' bridge`,
remoteConn.Username, remoteConn.Destination, logLevel)
`ssh -p %d -T%s %s@%s -- varlink -A 'podman --log-level=%s varlink $VARLINK_ADDRESS' bridge`,
port, options, remoteConn.Username, remoteConn.Destination, logLevel)
}

0 comments on commit c831a64

Please sign in to comment.