about summary refs log tree commit diff
path: root/src/libutil/util.hh
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2015-11-19T22·44-0500
committerShea Levy <shea@shealevy.com>2015-11-19T22·44-0500
commit5deb7fbdfb9fd910be6be4bfcd139ebdac435242 (patch)
treeda8e56515ec79bf5d865b2775f8073fcebbbc818 /src/libutil/util.hh
parent33f2fbcb62a4c47dd5c9c2fd987f5288b81dae61 (diff)
parent36f7fcc157de8d4f1b195f0e3cb7e384d4083c2a (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.hh')
-rw-r--r--src/libutil/util.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh
index 23d01e9a6ca0..f4026a0a884b 100644
--- a/src/libutil/util.hh
+++ b/src/libutil/util.hh
@@ -199,9 +199,11 @@ class AutoDelete
     bool del;
     bool recursive;
 public:
+    AutoDelete();
     AutoDelete(const Path & p, bool recursive = true);
     ~AutoDelete();
     void cancel();
+    void reset(const Path & p, bool recursive = true);
     operator Path() const { return path; }
 };