Doh
https://hydra.nixos.org/build/102803044 (cherry picked from commit bda64a2b0f79346012332ed18f5a76388e6d9bae)
This commit is contained in:
parent
0fb4744467
commit
e3d44a3b83
1 changed files with 1 additions and 1 deletions
|
@ -1444,7 +1444,7 @@ void LocalStore::createUser(const std::string & userName, uid_t userId)
|
|||
createDirs(dir);
|
||||
if (chmod(dir.c_str(), 0755) == -1)
|
||||
throw SysError("changing permissions of directory '%s'", dir);
|
||||
if (chown(dir.c_str(), userId, 0) == -1)
|
||||
if (chown(dir.c_str(), userId, getgid()) == -1)
|
||||
throw SysError("changing owner of directory '%s'", dir);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue