mirror of
https://github.com/NixOS/nix.git
synced 2024-11-21 22:32:26 +00:00
feat: turn fatal error of missing user into warning
fix: Update src/libstore/unix/user-lock.cc Co-authored-by: Robert Hensing <roberth@users.noreply.github.com> fix: remove single-quotes
This commit is contained in:
parent
b89eca9aec
commit
48ec9e7ca0
@ -74,8 +74,13 @@ struct SimpleUserLock : UserLock
|
||||
debug("trying user '%s'", i);
|
||||
|
||||
struct passwd * pw = getpwnam(i.c_str());
|
||||
if (!pw)
|
||||
throw Error("the user '%s' in the group '%s' does not exist", i, settings.buildUsersGroup);
|
||||
if (!pw) {
|
||||
printError("error: the user '%s' in the group '%s' does not exist", i, settings.buildUsersGroup);
|
||||
#if __APPLE__
|
||||
printError("note: If you are using macOS 15.0 Sequoia or newer, you may need to run this script: https://github.com/NixOS/nix/blob/master/scripts/sequoia-nixbld-user-migration.sh");
|
||||
#endif
|
||||
continue;
|
||||
}
|
||||
|
||||
auto fnUserLock = fmt("%s/userpool/%s", settings.nixStateDir,pw->pw_uid);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user