File: engine-backport-49562-libcontainer-cgroups-import-path.patch

package info (click to toggle)
docker.io 26.1.5%2Bdfsg1-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 68,644 kB
  • sloc: sh: 5,748; makefile: 912; ansic: 664; asm: 228; python: 162
file content (18 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: switch to github.com/opencontainers/cgroups
Author: Sebastiaan van Stijn <github@gone.nl>
Origin: https://github.com/moby/moby/pull/49562
Applied-Upstream: v28.0.3+

diff --git a/engine/daemon/oci_linux.go b/engine/daemon/oci_linux.go
index 75aecfa45f..8469704e27 100644
--- a/engine/daemon/oci_linux.go
+++ b/engine/daemon/oci_linux.go
@@ -29,7 +29,7 @@ import (
 	"github.com/moby/sys/mount"
 	"github.com/moby/sys/mountinfo"
 	"github.com/moby/sys/user"
-	"github.com/opencontainers/runc/libcontainer/cgroups"
+	"github.com/opencontainers/cgroups"
 	specs "github.com/opencontainers/runtime-spec/specs-go"
 	"github.com/pkg/errors"
 )