diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-08-27 20:58:47 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-08-27 20:58:47 +0200 |
commit | e5b397b2c7b0cf358a2cbfff34e0803b3290831e (patch) | |
tree | def8e0cff3e1b0d1cdaa08708768fb0b2974adec /src/libstore/globals.hh | |
parent | 73728874ab89d77bce3b103acb239d4d5eec14b1 (diff) | |
parent | 5c06a8d3283139140e765b5f10ad7102a6a3e964 (diff) |
Merge branch 'test-sandboxing' of https://github.com/matthewbauer/nix
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r-- | src/libstore/globals.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh index 13effb507..ab1c09aa2 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -209,6 +209,9 @@ public: "The paths to make available inside the build sandbox.", {"build-chroot-dirs", "build-sandbox-paths"}}; + Setting<bool> sandboxFallback{this, true, "sandbox-fallback", + "Whether to disable sandboxing when the kernel doesn't allow it."}; + Setting<PathSet> extraSandboxPaths{this, {}, "extra-sandbox-paths", "Additional paths to make available inside the build sandbox.", {"build-extra-chroot-dirs", "build-extra-sandbox-paths"}}; |