mirror of
https://github.com/containers/podman.git
synced 2025-06-04 13:08:55 +08:00

when using the remote client, users may need to specify a non-standard port for ssh connections. we can do so on the command line and within the remote-client configuration file. Fixes: #3987 Signed-off-by: baude <bbaude@redhat.com>
21 lines
505 B
Go
21 lines
505 B
Go
// +build linux darwin
|
|
// +build remoteclient
|
|
|
|
package adapter
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/containers/libpod/cmd/podman/remoteclientconfig"
|
|
)
|
|
|
|
func formatDefaultBridge(remoteConn *remoteclientconfig.RemoteConnection, logLevel string) string {
|
|
port := remoteConn.Port
|
|
if port == 0 {
|
|
port = 22
|
|
}
|
|
return fmt.Sprintf(
|
|
`ssh -p %d -T %s@%s -- /usr/bin/varlink -A \'/usr/bin/podman --log-level=%s varlink \\\$VARLINK_ADDRESS\' bridge`,
|
|
port, remoteConn.Username, remoteConn.Destination, logLevel)
|
|
}
|