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

Require signatures by default

This corresponds to the NixOS default.
parent 4bb38591
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ LocalStore::LocalStore(const Params & params)
, reservedPath(dbDir + "/reserved")
, schemaPath(dbDir + "/schema")
, trashDir(realStoreDir + "/trash")
, requireSigs(trim(settings.get("signed-binary-caches", std::string(""))) != "") // FIXME: rename option
, requireSigs(trim(settings.get("signed-binary-caches", std::string("*"))) != "") // FIXME: rename option
, publicKeys(getDefaultPublicKeys())
{
auto state(_state.lock());
......
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