mirror of
https://github.com/NixOS/nix
synced 2025-06-28 22:01:15 +02:00
Simplify getting use-ssh-substituter from untrusted users
This commit is contained in:
parent
bf4a577a58
commit
42eb4afd7a
2 changed files with 3 additions and 14 deletions
|
@ -557,11 +557,12 @@ static void performOp(bool trusted, unsigned int clientVersion,
|
|||
for (unsigned int i = 0; i < n; i++) {
|
||||
string name = readString(from);
|
||||
string value = readString(from);
|
||||
if (name == "build-timeout")
|
||||
string2Int(value, settings.buildTimeout);
|
||||
if (name == "build-timeout" || name == "use-ssh-substituter")
|
||||
settings.set(name, value);
|
||||
else
|
||||
settings.set(trusted ? name : "untrusted-" + name, value);
|
||||
}
|
||||
settings.update();
|
||||
}
|
||||
startWork();
|
||||
stopWork();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue