mirror of
https://github.com/NixOS/nix.git
synced 2024-11-21 22:32:26 +00:00
Don't chown when local-store is read-only
If the local-store is using the read-only flag, the underlying filesystem might be read-only, thus an attempt to `chown` would always fail.
This commit is contained in:
parent
573e385a68
commit
de639ceafe
@ -233,7 +233,7 @@ LocalStore::LocalStore(const Params & params)
|
||||
struct group * gr = getgrnam(settings.buildUsersGroup.get().c_str());
|
||||
if (!gr)
|
||||
printError("warning: the group '%1%' specified in 'build-users-group' does not exist", settings.buildUsersGroup);
|
||||
else {
|
||||
else if (!readOnly) {
|
||||
struct stat st;
|
||||
if (stat(realStoreDir.get().c_str(), &st))
|
||||
throw SysError("getting attributes of path '%1%'", realStoreDir);
|
||||
|
Loading…
Reference in New Issue
Block a user