diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-11-20T16·29+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-11-20T16·32+0100 |
commit | 7a2b64e55c7d57707f4d1ed54ee21bf69d0d0d16 (patch) | |
tree | 26b4270cdbbd180c0253e50310211ac29a4b1637 /src/libstore/globals.hh | |
parent | ea94a87493df0a60cadba291e31bbe7c6847c0c5 (diff) |
binary-cache-public-keys -> trusted-public-keys
The name had become a misnomer since it's not only for substitution from binary caches, but when adding/copying any (non-content-addressed) path to a store.
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r-- | src/libstore/globals.hh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh index a4aa842d70fd..70c01bb32665 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -259,10 +259,11 @@ public: Setting<bool> enforceDeterminism{this, true, "enforce-determinism", "Whether to fail if repeated builds produce different output."}; - Setting<Strings> binaryCachePublicKeys{this, + Setting<Strings> trustedPublicKeys{this, {"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="}, - "binary-cache-public-keys", - "Trusted public keys for secure substitution."}; + "trusted-public-keys", + "Trusted public keys for secure substitution.", + {"binary-cache-public-keys"}}; Setting<Strings> secretKeyFiles{this, {}, "secret-key-files", "Secret keys with which to sign local builds."}; |