зеркало из https://github.com/microsoft/docker.git
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:
Коммит
649d8333ce
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче