diff options
Diffstat (limited to 'pkg/adapter/client_unix.go')
-rw-r--r-- | pkg/adapter/client_unix.go | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/pkg/adapter/client_unix.go b/pkg/adapter/client_unix.go deleted file mode 100644 index 7af8b24c6..000000000 --- a/pkg/adapter/client_unix.go +++ /dev/null @@ -1,27 +0,0 @@ -// +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 -- varlink -A \'podman --log-level=%s varlink \\\$VARLINK_ADDRESS\' bridge`, - port, options, remoteConn.Username, remoteConn.Destination, logLevel) -} |