about summary refs log tree commit diff
path: root/src/libstore/globals.hh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-04-20T11·20+0200
committerEelco Dolstra <edolstra@gmail.com>2017-04-20T11·41+0200
commit76cb3c702cc1769438940b65b83971f483cca062 (patch)
tree139514c32f0af84345e2d64e499746bfffeb4d99 /src/libstore/globals.hh
parent9cc8047f44b3d333c2c55c140165bfd507f4d41e (diff)
Reimplement trusted-substituters (aka trusted-binary-caches)
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r--src/libstore/globals.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh
index 72863920de..a5d5a3f505 100644
--- a/src/libstore/globals.hh
+++ b/src/libstore/globals.hh
@@ -239,6 +239,10 @@ public:
         "Additional URIs of substituters.",
         {"extra-binary-caches"}};
 
+    Setting<StringSet> trustedSubstituters{this, {}, "trusted-substituters",
+        "Disabled substituters that may be enabled via the substituters option by untrusted users.",
+        {"trusted-binary-caches"}};
+
     Setting<Strings> trustedUsers{this, {"root"}, "trusted-users",
         "Which users or groups are trusted to ask the daemon to do unsafe things."};