Skip to content
Snippets Groups Projects
Unverified Commit dffc3fe4 authored by Eelco Dolstra's avatar Eelco Dolstra
Browse files

nix copy: Add --no-check-sigs flag

parent e4bd42f9
No related branches found
No related tags found
No related merge requests found
...@@ -12,10 +12,17 @@ struct CmdCopy : StorePathsCommand ...@@ -12,10 +12,17 @@ struct CmdCopy : StorePathsCommand
{ {
std::string srcUri, dstUri; std::string srcUri, dstUri;
CheckSigsFlag checkSigs = CheckSigs;
CmdCopy() CmdCopy()
{ {
mkFlag(0, "from", "store-uri", "URI of the source Nix store", &srcUri); mkFlag(0, "from", "store-uri", "URI of the source Nix store", &srcUri);
mkFlag(0, "to", "store-uri", "URI of the destination Nix store", &dstUri); mkFlag(0, "to", "store-uri", "URI of the destination Nix store", &dstUri);
mkFlag()
.longName("no-check-sigs")
.description("do not require that paths are signed by trusted keys")
.handler([&](Strings ss) { checkSigs = NoCheckSigs; });
} }
std::string name() override std::string name() override
...@@ -50,7 +57,8 @@ struct CmdCopy : StorePathsCommand ...@@ -50,7 +57,8 @@ struct CmdCopy : StorePathsCommand
ref<Store> dstStore = dstUri.empty() ? openStore() : openStore(dstUri); ref<Store> dstStore = dstUri.empty() ? openStore() : openStore(dstUri);
copyPaths(srcStore, dstStore, PathSet(storePaths.begin(), storePaths.end())); copyPaths(srcStore, dstStore, PathSet(storePaths.begin(), storePaths.end()),
NoRepair, checkSigs);
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment