daemon: Always require a signature when importing an archive.

* nix/nix-daemon/nix-daemon.cc (performOp): Pass true as the first argument to
  'performOp'.
This commit is contained in:
Ludovic Courtès 2015-06-06 18:00:58 +02:00
parent d2aa12250e
commit aa0f8409db
1 changed files with 4 additions and 1 deletions

View File

@ -440,7 +440,10 @@ static void performOp(bool trusted, unsigned int clientVersion,
case wopImportPaths: {
startWork();
TunnelSource source(from);
Paths paths = store->importPaths(!trusted, source);
/* Unlike Nix, always require a signature, even for "trusted"
users. */
Paths paths = store->importPaths(true, source);
stopWork();
writeStrings(paths, to);
break;