diff options
author | Paul Holzinger <pholzing@redhat.com> | 2021-09-17 13:40:05 +0200 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2021-09-17 13:57:38 +0200 |
commit | c692f7a18b0dc49aace5eddc61072667d25d6dc7 (patch) | |
tree | 03917ee80a7e300caa32431ff572400f528075ad /libpod/oci_attach_unsupported.go | |
parent | 9a5987cf6a7729f9d03a663dd361a37ca473da59 (diff) | |
download | podman-c692f7a18b0dc49aace5eddc61072667d25d6dc7.tar.gz podman-c692f7a18b0dc49aace5eddc61072667d25d6dc7.tar.bz2 podman-c692f7a18b0dc49aace5eddc61072667d25d6dc7.zip |
Remove unused code from libpod
The libpod package should only compile on linux. The remote client
should never try to import this package.
Since these files do not add any value we should remove them, this
prevents people from accidentally importing this package because it would
fail to compile on windows/macos.
[NO TESTS NEEDED]
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'libpod/oci_attach_unsupported.go')
-rw-r--r-- | libpod/oci_attach_unsupported.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/libpod/oci_attach_unsupported.go b/libpod/oci_attach_unsupported.go deleted file mode 100644 index 85e8b32e6..000000000 --- a/libpod/oci_attach_unsupported.go +++ /dev/null @@ -1,17 +0,0 @@ -//+build !linux - -package libpod - -import ( - "os" - - "github.com/containers/podman/v3/libpod/define" -) - -func (c *Container) attach(streams *define.AttachStreams, keys string, resize <-chan define.TerminalSize, startContainer bool, started chan bool, attachRdy chan<- bool) error { - return define.ErrNotImplemented -} - -func (c *Container) attachToExec(streams *define.AttachStreams, keys string, resize <-chan define.TerminalSize, sessionID string, startFd *os.File, attachFd *os.File) error { - return define.ErrNotImplemented -} |