summaryrefslogtreecommitdiff
path: root/libpod/container_internal.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-09-13 18:44:45 +0200
committerGitHub <noreply@github.com>2019-09-13 18:44:45 +0200
commite8a44ebd460a2cc2d499b02cb4e0f699a9965b85 (patch)
treef0ee4571f9a471bade27557a52def7100a4a9284 /libpod/container_internal.go
parent7875e00c663a42dd26c99889206cdb8f16ff0905 (diff)
parent88ebc33840ff07701254e2f6e2484f229f09a6cc (diff)
downloadpodman-e8a44ebd460a2cc2d499b02cb4e0f699a9965b85.tar.gz
podman-e8a44ebd460a2cc2d499b02cb4e0f699a9965b85.tar.bz2
podman-e8a44ebd460a2cc2d499b02cb4e0f699a9965b85.zip
Merge pull request #4006 from rhatdan/rootless
Report errors when trying to pause rootless containers
Diffstat (limited to 'libpod/container_internal.go')
-rw-r--r--libpod/container_internal.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go
index 0b5a8b946..6bf8439da 100644
--- a/libpod/container_internal.go
+++ b/libpod/container_internal.go
@@ -14,6 +14,7 @@ import (
"github.com/containers/libpod/libpod/define"
"github.com/containers/libpod/libpod/events"
+ "github.com/containers/libpod/pkg/cgroups"
"github.com/containers/libpod/pkg/ctime"
"github.com/containers/libpod/pkg/hooks"
"github.com/containers/libpod/pkg/hooks/exec"
@@ -1132,6 +1133,16 @@ func (c *Container) pause() error {
return errors.Wrapf(define.ErrNoCgroups, "cannot pause without using CGroups")
}
+ if rootless.IsRootless() {
+ cgroupv2, err := cgroups.IsCgroup2UnifiedMode()
+ if err != nil {
+ return errors.Wrap(err, "failed to determine cgroupversion")
+ }
+ if !cgroupv2 {
+ return errors.Wrap(define.ErrNoCgroups, "can not pause containers on rootless containers with cgroup V1")
+ }
+ }
+
if err := c.ociRuntime.pauseContainer(c); err != nil {
return err
}