mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Check that the line is valid with 6 parts after split
This commit is contained in:
parent
4bc8ef42d4
commit
589d7c68db
1 changed files with 1 additions and 1 deletions
2
utils.go
2
utils.go
|
@ -445,7 +445,7 @@ func FindCgroupMountpoint(cgroupType string) (string, error) {
|
|||
// cgroup /sys/fs/cgroup/devices cgroup rw,relatime,devices 0 0
|
||||
for _, line := range strings.Split(string(output), "\n") {
|
||||
parts := strings.Split(line, " ")
|
||||
if len(parts) > 1 && parts[2] == "cgroup" {
|
||||
if len(parts) == 6 && parts[2] == "cgroup" {
|
||||
for _, opt := range strings.Split(parts[3], ",") {
|
||||
if opt == cgroupType {
|
||||
return parts[1], nil
|
||||
|
|
Loading…
Reference in a new issue