1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-28 17:51:15 +02:00

Add "nix copy-sigs" command

This imports signatures from one store into another. E.g.

  $ nix copy-sigs -r /run/current-system -s https://cache.nixos.org/
  imported 595 signatures
This commit is contained in:
Eelco Dolstra 2016-04-05 15:30:22 +02:00
parent 80da7a6375
commit d0f5719c2a
9 changed files with 185 additions and 3 deletions

View file

@ -543,6 +543,18 @@ static void performOp(ref<LocalStore> store, bool trusted, unsigned int clientVe
break;
}
case wopAddSignatures: {
Path path = readStorePath(from);
StringSet sigs = readStrings<StringSet>(from);
startWork();
if (!trusted)
throw Error("you are not privileged to add signatures");
store->addSignatures(path, sigs);
stopWork();
to << 1;
break;
}
default:
throw Error(format("invalid operation %1%") % op);
}