summaryrefslogtreecommitdiff
path: root/pkg/adapter/client_unix.go
blob: 2bf71295fc1d178ce73decc81943506003c70856 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// +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
	}
	options := ""
	if remoteConn.IdentityFile != "" {
		options += " -i " + remoteConn.IdentityFile
	}
	if remoteConn.IgnoreHosts {
		options += " -q -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"
	}
	return fmt.Sprintf(
		`ssh -p %d -T%s %s@%s -- /usr/bin/varlink -A \'/usr/bin/podman --log-level=%s varlink \\\$VARLINK_ADDRESS\' bridge`,
		port, options, remoteConn.Username, remoteConn.Destination, logLevel)
}