Merge pull request #11377 from aidanhs/aphs-allow-nonexistent-gid

Allow a non-existent groupid to own the docker socket
This commit is contained in:
Jessie Frazelle 2015-03-14 15:01:10 -07:00
Родитель e2ca237aa2 334382a8c3
Коммит 649d8333ce
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -1457,6 +1457,11 @@ func lookupGidByName(nameOrGid string) (int, error) {
if groups != nil && len(groups) > 0 {
return groups[0].Gid, nil
}
gid, err := strconv.Atoi(nameOrGid)
if err != nil {
log.Warnf("Could not find GID %d", gid)
return gid, nil
}
return -1, fmt.Errorf("Group %s not found", nameOrGid)
}