diff options
Diffstat (limited to 'src/nix-worker/nix-worker.cc')
-rw-r--r-- | src/nix-worker/nix-worker.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc index 5e261aa16198..4aab03fcd685 100644 --- a/src/nix-worker/nix-worker.cc +++ b/src/nix-worker/nix-worker.cc @@ -466,10 +466,12 @@ static void processConnection() /* If we can't accept clientVersion, then throw an error *here* (not above). */ +#if 0 /* Prevent users from doing something very dangerous. */ if (geteuid() == 0 && querySetting("build-users-group", "") == "") throw Error("if you run `nix-worker' as root, then you MUST set `build-users-group'!"); +#endif /* Open the store. */ store = boost::shared_ptr<StoreAPI>(new LocalStore(true)); |