From 241326a9a8c20ad7f2bcf651416b836e7778e090 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Thu, 16 Apr 2020 12:25:26 -0500 Subject: Podman V2 birth remote podman v1 and replace with podman v2. Signed-off-by: Brent Baude --- pkg/adapter/terminal_unsupported.go | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 pkg/adapter/terminal_unsupported.go (limited to 'pkg/adapter/terminal_unsupported.go') diff --git a/pkg/adapter/terminal_unsupported.go b/pkg/adapter/terminal_unsupported.go deleted file mode 100644 index 9067757a1..000000000 --- a/pkg/adapter/terminal_unsupported.go +++ /dev/null @@ -1,23 +0,0 @@ -// +build !linux - -package adapter - -import ( - "context" - "os" - - "github.com/containers/libpod/libpod" - "github.com/containers/libpod/libpod/define" -) - -// ExecAttachCtr execs and attaches to a container -func ExecAttachCtr(ctx context.Context, ctr *libpod.Container, tty, privileged bool, env map[string]string, cmd []string, user, workDir string, streams *define.AttachStreams, preserveFDs uint, detachKeys string) (int, error) { - return -1, define.ErrNotImplemented -} - -// StartAttachCtr starts and (if required) attaches to a container -// if you change the signature of this function from os.File to io.Writer, it will trigger a downstream -// error. we may need to just lint disable this one. -func StartAttachCtr(ctx context.Context, ctr *libpod.Container, stdout, stderr, stdin *os.File, detachKeys string, sigProxy bool, startContainer bool, recursive bool) error { //nolint-interfacer - return define.ErrNotImplemented -} -- cgit v1.2.3-54-g00ecf