File tree Expand file tree Collapse file tree 9 files changed +9
-9
lines changed Expand file tree Collapse file tree 9 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ require (
43
43
github.com/mattn/go-shellwords v1.0.12
44
44
github.com/mattn/go-sqlite3 v1.14.20
45
45
github.com/mdlayher/vsock v1.2.1
46
+ github.com/moby/sys/user v0.1.0
46
47
github.com/moby/term v0.5.0
47
48
github.com/nxadm/tail v1.4.11
48
49
github.com/onsi/ginkgo/v2 v2.15.0
@@ -164,7 +165,6 @@ require (
164
165
github.com/moby/patternmatcher v0.6.0 // indirect
165
166
github.com/moby/sys/mountinfo v0.7.1 // indirect
166
167
github.com/moby/sys/sequential v0.5.0 // indirect
167
- github.com/moby/sys/user v0.1.0 // indirect
168
168
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
169
169
github.com/modern-go/reflect2 v1.0.2 // indirect
170
170
github.com/morikuni/aec v1.0.0 // indirect
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ import (
47
47
"github.com/containers/storage/pkg/lockfile"
48
48
stypes "github.com/containers/storage/types"
49
49
securejoin "github.com/cyphar/filepath-securejoin"
50
- runcuser "github.com/opencontainers/runc/libcontainer /user"
50
+ runcuser "github.com/moby/sys /user"
51
51
spec "github.com/opencontainers/runtime-spec/specs-go"
52
52
"github.com/opencontainers/runtime-tools/generate"
53
53
"github.com/opencontainers/selinux/go-selinux"
Original file line number Diff line number Diff line change 3
3
package libpod
4
4
5
5
import (
6
- "github.com/opencontainers/runc/libcontainer /user"
6
+ "github.com/moby/sys /user"
7
7
spec "github.com/opencontainers/runtime-spec/specs-go"
8
8
)
9
9
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ package libpod
4
4
5
5
import (
6
6
"github.com/containers/common/pkg/capabilities"
7
- "github.com/opencontainers/runc/libcontainer /user"
7
+ "github.com/moby/sys /user"
8
8
spec "github.com/opencontainers/runtime-spec/specs-go"
9
9
)
10
10
Original file line number Diff line number Diff line change 5
5
"strconv"
6
6
7
7
securejoin "github.com/cyphar/filepath-securejoin"
8
- "github.com/opencontainers/runc/libcontainer /user"
8
+ "github.com/moby/sys /user"
9
9
"github.com/sirupsen/logrus"
10
10
)
11
11
Original file line number Diff line number Diff line change 8
8
"sync"
9
9
10
10
"github.com/containers/storage/pkg/lockfile"
11
- "github.com/opencontainers/runc/libcontainer /user"
11
+ "github.com/moby/sys /user"
12
12
spec "github.com/opencontainers/runtime-spec/specs-go"
13
13
)
14
14
Original file line number Diff line number Diff line change 4
4
"reflect"
5
5
"testing"
6
6
7
- "github.com/opencontainers/runc/libcontainer /user"
7
+ "github.com/moby/sys /user"
8
8
spec "github.com/opencontainers/runtime-spec/specs-go"
9
9
)
10
10
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import (
28
28
"github.com/containers/storage/pkg/idtools"
29
29
stypes "github.com/containers/storage/types"
30
30
securejoin "github.com/cyphar/filepath-securejoin"
31
- ruser "github.com/opencontainers/runc/libcontainer /user"
31
+ ruser "github.com/moby/sys /user"
32
32
"github.com/opencontainers/runtime-spec/specs-go"
33
33
"github.com/sirupsen/logrus"
34
34
"golang.org/x/term"
Original file line number Diff line number Diff line change 6
6
"time"
7
7
8
8
"github.com/containers/storage/pkg/idtools"
9
- ruser "github.com/opencontainers/runc/libcontainer /user"
9
+ ruser "github.com/moby/sys /user"
10
10
"github.com/opencontainers/runtime-spec/specs-go"
11
11
"github.com/stretchr/testify/assert"
12
12
)
You can’t perform that action at this time.
0 commit comments