diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-07-05 14:15:38 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-07-06 15:29:38 +0000 |
commit | cf2be66f526fcd1ab9f7a1a3f9af6582070ef791 (patch) | |
tree | 59d26c12d94b9c8762ad7953a36f571769078d78 | |
parent | eae800789631baa7d377568b2019abd8359cbf70 (diff) | |
download | podman-cf2be66f526fcd1ab9f7a1a3f9af6582070ef791.tar.gz podman-cf2be66f526fcd1ab9f7a1a3f9af6582070ef791.tar.bz2 podman-cf2be66f526fcd1ab9f7a1a3f9af6582070ef791.zip |
Remove now-unneeded cleanupCgroup() for unsupported OS
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #1051
Approved by: umohnani8
-rw-r--r-- | libpod/container_internal_unsupported.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libpod/container_internal_unsupported.go b/libpod/container_internal_unsupported.go index 975d6d714..45b54efab 100644 --- a/libpod/container_internal_unsupported.go +++ b/libpod/container_internal_unsupported.go @@ -8,10 +8,6 @@ import ( spec "github.com/opencontainers/runtime-spec/specs-go" ) -func (c *Container) cleanupCgroups() error { - return ErrOSNotSupported -} - func (c *Container) mountSHM(shmOptions string) error { return ErrNotImplemented } |