summaryrefslogtreecommitdiff
path: root/pkg/spec/spec.go
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2019-06-19 14:25:53 +0200
committerGiuseppe Scrivano <gscrivan@redhat.com>2019-06-26 13:17:04 +0200
commit5d25a4793d465896fd1762735c8bb593c4aefdfd (patch)
tree8ae160860ca625f79bfd71b0b9687335d93c0d8b /pkg/spec/spec.go
parentd841d088a45c6a661e6dab2fd14eea74993154f5 (diff)
downloadpodman-5d25a4793d465896fd1762735c8bb593c4aefdfd.tar.gz
podman-5d25a4793d465896fd1762735c8bb593c4aefdfd.tar.bz2
podman-5d25a4793d465896fd1762735c8bb593c4aefdfd.zip
util: drop IsCgroup2UnifiedMode and use it from cgroups
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'pkg/spec/spec.go')
-rw-r--r--pkg/spec/spec.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/spec/spec.go b/pkg/spec/spec.go
index 0d953ff6f..06d1ac12d 100644
--- a/pkg/spec/spec.go
+++ b/pkg/spec/spec.go
@@ -6,8 +6,8 @@ import (
"strings"
"github.com/containers/libpod/libpod"
+ "github.com/containers/libpod/pkg/cgroups"
"github.com/containers/libpod/pkg/rootless"
- "github.com/containers/libpod/pkg/util"
pmount "github.com/containers/storage/pkg/mount"
"github.com/docker/docker/oci/caps"
"github.com/docker/go-units"
@@ -350,7 +350,7 @@ func (config *CreateConfig) createConfigToOCISpec(runtime *libpod.Runtime, userM
}
if rootless.IsRootless() {
- cgroup2, err := util.IsCgroup2UnifiedMode()
+ cgroup2, err := cgroups.IsCgroup2UnifiedMode()
if err != nil {
return nil, err
}