Merge pull request #464 from tianon/patch-1
- Runtime: adapt cgroup capability detection to work on Gentoo Upstream-commit: cff26b3a6c56422b3f2a0275fa7ef1cdd187138b Component: engine
This commit is contained in:
@ -442,7 +442,7 @@ func FindCgroupMountpoint(cgroupType string) (string, error) {
|
||||
return "", err
|
||||
}
|
||||
|
||||
reg := regexp.MustCompile(`^cgroup on (.*) type cgroup \(.*` + cgroupType + `[,\)]`)
|
||||
reg := regexp.MustCompile(`^.* on (.*) type cgroup \(.*` + cgroupType + `[,\)]`)
|
||||
for _, line := range strings.Split(string(output), "\n") {
|
||||
r := reg.FindStringSubmatch(line)
|
||||
if len(r) == 2 {
|
||||
|
||||
Reference in New Issue
Block a user