mirror of
https://github.com/containers/podman.git
synced 2025-06-02 19:02:10 +08:00
Apply changes also to the windows implementation
Signed-off-by: Anders F Björklund <anders.f.bjorklund@gmail.com>
This commit is contained in:
@ -9,7 +9,18 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func formatDefaultBridge(remoteConn *remoteclientconfig.RemoteConnection, logLevel string) string {
|
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(
|
return fmt.Sprintf(
|
||||||
`ssh -T %s@%s -- /usr/bin/varlink -A '/usr/bin/podman --log-level=%s varlink $VARLINK_ADDRESS' bridge`,
|
`ssh -p %d -T%s %s@%s -- varlink -A 'podman --log-level=%s varlink $VARLINK_ADDRESS' bridge`,
|
||||||
remoteConn.Username, remoteConn.Destination, logLevel)
|
port, options, remoteConn.Username, remoteConn.Destination, logLevel)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user