Browse Source

Merge pull request #464 from tianon/patch-1

- Runtime: adapt cgroup capability detection to work on Gentoo
Solomon Hykes 12 years ago
parent
commit
cff26b3a6c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils.go

+ 1 - 1
utils.go

@@ -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 {