diff options
author | Shea Levy <shea@shealevy.com> | 2015-11-19T22·44-0500 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2015-11-19T22·44-0500 |
commit | 5deb7fbdfb9fd910be6be4bfcd139ebdac435242 (patch) | |
tree | da8e56515ec79bf5d865b2775f8073fcebbbc818 /src/libutil/util.cc | |
parent | 33f2fbcb62a4c47dd5c9c2fd987f5288b81dae61 (diff) | |
parent | 36f7fcc157de8d4f1b195f0e3cb7e384d4083c2a (diff) |
Merge branch 'sandbox-profiles' of git://github.com/pikajude/nix
Temporarily allow derivations to describe their full sandbox profile. This will be eventually scaled back to a more secure setup, see the discussion at #695
Diffstat (limited to 'src/libutil/util.cc')
-rw-r--r-- | src/libutil/util.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libutil/util.cc b/src/libutil/util.cc index 27116fd18297..75032bf90d0b 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -599,6 +599,8 @@ string drainFD(int fd) ////////////////////////////////////////////////////////////////////// +AutoDelete::AutoDelete() : del{false} {} + AutoDelete::AutoDelete(const string & p, bool recursive) : path(p) { del = true; @@ -626,6 +628,12 @@ void AutoDelete::cancel() del = false; } +void AutoDelete::reset(const Path & p, bool recursive) { + path = p; + this->recursive = recursive; + del = true; +} + ////////////////////////////////////////////////////////////////////// |