summaryrefslogtreecommitdiff
path: root/pkg/adapter/client_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/adapter/client_windows.go')
-rw-r--r--pkg/adapter/client_windows.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkg/adapter/client_windows.go b/pkg/adapter/client_windows.go
deleted file mode 100644
index 32302a600..000000000
--- a/pkg/adapter/client_windows.go
+++ /dev/null
@@ -1,26 +0,0 @@
-// +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)
-}